tidying
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 5 Aug 2017 14:04:39 +0000 (15:04 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 5 Aug 2017 14:04:39 +0000 (15:04 +0100)
src/src/debug.c
src/src/macro_predef.c

index f6c8b2f62eb7cd61480da828512aa2cb97f44895..7a2e656323f9656a96c02c31394a21c6d30d24a6 100644 (file)
@@ -188,7 +188,7 @@ if (debug_ptr == debug_buffer)
 
     gettimeofday(&now, NULL);
     tmp = now.tv_sec;
-    t = timestamps_utc ? gmtime(&now) : localtime(&now);
+    t = timestamps_utc ? gmtime(&tmp) : localtime(&tmp);
     debug_ptr += sprintf(CS debug_ptr,
       LOGGING(millisec) ? "%02d:%02d:%02d.%03d " : "%02d:%02d:%02d ",
       t->tm_hour, t->tm_min, t->tm_sec, now.tv_usec/1000);
index 59579a373f2bf2f683a6deb93152d2149c08121e..502bfc7ee8dd7f8f713b0baa97a8ed6df748acb2 100644 (file)
@@ -29,7 +29,7 @@ if (mp_index == 0)
 else
   printf("&p%d,", mp_index-1);
 
-printf(" FALSE, %d, 1, \"%s\", \"y\" };\n", Ustrlen(name), CS name);
+printf(" FALSE, %d, 1, US\"%s\", US\"y\" };\n", Ustrlen(name), CS name);
 mp_index++;
 }