commit | 2f0aaaf9dabd846061a759b53ff4759ec886df62 | [log] [tgz] |
---|---|---|
author | Ramsay Jones <ramsay@ramsay1.demon.co.uk> | Thu May 30 00:53:28 2013 +0100 |
committer | Junio C Hamano <gitster@pobox.com> | Wed May 29 17:03:14 2013 -0700 |
tree | bc342718f16a420041edd4ec2d6f6bd44d66912c | |
parent | edca4152560522a431a51fc0a06147fc680b5b18 [diff] |
path: Fix a sparse warning On MinGW, sparse issues an "'get_st_mode_bits' not declared. Should it be static?" warning. The MinGW and MSVC builds do not see the declaration of this function, within git-compat-util.h, due to its placement within an preprocessor conditional. In order to suppress the warning, we simply move the declaration to the top level of the header. Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>