the repository which powers this website
shared: make some variables 'static'
These are not used outside this file and are not declared.
Signed-off-by: John Keeping <[email protected]>
| -rw-r--r-- | shared.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -284,8 +284,8 @@ static int load_mmfile(mmfile_t *file, const unsigned char *sha1) * ripped from git and modified to use globals instead of * a special callback-struct. */ -char *diffbuf = NULL; -int buflen = 0; +static char *diffbuf = NULL; +static int buflen = 0; static int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) { |