test-string-list.c: Fix some sparse warnings
commit65119878548f869270fbc8d382f042cca3a6ad05
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>
Sat, 15 Sep 2012 16:18:42 +0000 (15 17:18 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 16 Sep 2012 06:33:58 +0000 (15 23:33 -0700)
tree643e141cd5fe6c26fde95c1e6728ab6590edf78b
parent5f0fc64513c8cb638e0d6010005d8e86c9dbca3a
test-string-list.c: Fix some sparse warnings

In particular, sparse complains as follows:

        SP test-string-list.c
    test-string-list.c:10:6: warning: symbol 'parse_string_list' was not \
        declared. Should it be static?
    test-string-list.c:18:6: warning: symbol 'write_list' was not \
        declared. Should it be static?
    test-string-list.c:25:6: warning: symbol 'write_list_compact' was not \
        declared. Should it be static?
    test-string-list.c:38:5: warning: symbol 'prefix_cb' was not \
        declared. Should it be static?

In order to suppress the warnings, since the above symbols do not
need more than file scope, we simply include the static modifier
in their declaration.

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
test-string-list.c