Merge branch 'rj/sparse'

* rj/sparse:
  Revert "compat/unsetenv.c: Fix a sparse warning"
This commit is contained in:
Junio C Hamano 2013-07-24 19:21:30 -07:00
commit fc5894bc72

View File

@ -2,6 +2,9 @@
void gitunsetenv (const char *name)
{
#if !defined(__MINGW32__)
extern char **environ;
#endif
int src, dst;
size_t nmln;