Browse Source

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>
maint
Ramsay Jones 12 years ago committed by Junio C Hamano
parent
commit
2f0aaaf9da
  1. 4
      git-compat-util.h

4
git-compat-util.h

@ -127,6 +127,9 @@ @@ -127,6 +127,9 @@
#else
#include <poll.h>
#endif

extern int get_st_mode_bits(const char *path, int *mode);

#if defined(__MINGW32__)
/* pull in Windows compatibility stuff */
#include "compat/mingw.h"
@ -163,7 +166,6 @@ @@ -163,7 +166,6 @@
typedef long intptr_t;
typedef unsigned long uintptr_t;
#endif
int get_st_mode_bits(const char *path, int *mode);
#if defined(__CYGWIN__)
#undef _XOPEN_SOURCE
#include <grp.h>

Loading…
Cancel
Save