diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-12-01 15:00:28 -0200 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2013-12-01 15:00:28 -0200 |
commit | 4dda2980ff8dc8c3b9e24c5ecc3d2578ca783418 (patch) | |
tree | 91b01a30443fb99edf14cf43c46949c244c4ebba /phpdbg_utils.c | |
parent | 9ca817eb0ffef5b87717ddda83648695e66e0998 (diff) | |
download | php-git-4dda2980ff8dc8c3b9e24c5ecc3d2578ca783418.tar.gz |
- CS
Diffstat (limited to 'phpdbg_utils.c')
-rw-r--r-- | phpdbg_utils.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/phpdbg_utils.c b/phpdbg_utils.c index 4b58448f0a..c81358db28 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -246,12 +246,10 @@ PHPDBG_API int phpdbg_rlog(FILE *fp, const char *fmt, ...) { /* {{{ */ int rc = 0; va_list args; - time_t now; struct timeval tp; va_start(args, fmt); - if (gettimeofday(&tp, NULL) == SUCCESS) - { + if (gettimeofday(&tp, NULL) == SUCCESS) { char friendly[100]; char *format = NULL, *buffer = NULL; |