load.c: Make stream_init() static
authorPetri Lehtinen <petri@digip.org>
Fri, 7 May 2010 04:35:11 +0000 (07:35 +0300)
committerPetri Lehtinen <petri@digip.org>
Fri, 7 May 2010 04:35:11 +0000 (07:35 +0300)
src/load.c

index 649609a..d49a4da 100644 (file)
@@ -113,7 +113,8 @@ static void error_set(json_error_t *error, const lex_t *lex,
 
 /*** lexical analyzer ***/
 
-void stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
+static void
+stream_init(stream_t *stream, get_func get, eof_func eof, void *data)
 {
     stream->get = get;
     stream->eof = eof;