Re: [PATCH 1/6] config.c: Fix a sparse warning

2013-10-07 Thread Jeff King
On Sun, Oct 06, 2013 at 09:48:29PM +0100, Ramsay Jones wrote: > Sparse issues an "'git_parse_unsigned' was not declared. Should it > be static?" warning. In order to suppress this warning, since this > symbol only requires file scope, we simply add the static modifier > to its declaration. Thanks

[PATCH 1/6] config.c: Fix a sparse warning

2013-10-06 Thread Ramsay Jones
Sparse issues an "'git_parse_unsigned' was not declared. Should it be static?" warning. In order to suppress this warning, since this symbol only requires file scope, we simply add the static modifier to its declaration. Signed-off-by: Ramsay Jones --- config.c | 2 +- 1 file changed, 1 inserti