diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-09-29 22:17:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-09-29 22:17:24 -0700 |
commit | 7dded6610e813c849b8f656862626586d883c31f (patch) | |
tree | 3a8f57dd20898582771f008e63d9c60edee01f2e /git-compat-util.h | |
parent | Merge branch 'jc/test-lazy-prereq' (diff) | |
parent | autoconf: check for setitimer() (diff) | |
download | tgif-7dded6610e813c849b8f656862626586d883c31f.tar.xz |
Merge branch 'jt/itimer-autoconf'
setitmer(2) and related API elements can be configured from
Makefile but autoconf did not know about it.
* jt/itimer-autoconf:
autoconf: check for setitimer()
autoconf: check for struct itimerval
git-compat-util.h: add missing semicolon after struct itimerval
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 0c4e663928..fb41118c07 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -192,7 +192,7 @@ extern int compat_mkdir_wo_trailing_slash(const char*, mode_t); struct itimerval { struct timeval it_interval; struct timeval it_value; -} +}; #endif #ifdef NO_SETITIMER |