diff options
author | David Rientjes <rientjes@google.com> | 2006-08-15 10:40:06 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-15 16:12:09 -0700 |
commit | 6f002f984f1d1ddfdae990582a423dc5263697ae (patch) | |
tree | 54262c1e3a316ad90ddd1ee2892789b35bfd3b1f /unpack-trees.c | |
parent | 0bef57ee44a2f924ad0066b751a3c87888633f56 (diff) | |
download | git-6f002f984f1d1ddfdae990582a423dc5263697ae.tar.gz |
use appropriate typedefs
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'unpack-trees.c')
-rw-r--r-- | unpack-trees.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unpack-trees.c b/unpack-trees.c index a20639be70..e496d8cd31 100644 --- a/unpack-trees.c +++ b/unpack-trees.c @@ -278,7 +278,7 @@ static void unlink_entry(char *name) } } -static volatile int progress_update = 0; +static volatile sig_atomic_t progress_update = 0; static void progress_interval(int signum) { |