diff options
Diffstat (limited to 'phpdbg_utils.c')
-rw-r--r-- | phpdbg_utils.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpdbg_utils.c b/phpdbg_utils.c index 4b58448f0a..67e1cbc464 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -19,6 +19,7 @@ #include <stdio.h> #include <ctype.h> +#include <string.h> #include "zend.h" #include "php.h" #include "spprintf.h" @@ -246,12 +247,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; |