Skip to content

Commit

Permalink
bugfix: PRINT_NOW().
Browse files Browse the repository at this point in the history
  • Loading branch information
starpos committed Jan 7, 2014
1 parent 572e746 commit 8b327e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmdkbkp/src/macro.hpp
Expand Up @@ -31,7 +31,7 @@
struct tm t; \
::localtime_r(&tv.tv_sec, &t); \
::printf("%d-%02d-%02d %02d:%02d:%02d.%03d", \
t.tm_year + 1900, t.tm_mon, t.tm_mday, \
t.tm_year + 1900, t.tm_mon + 1, t.tm_mday, \
t.tm_hour, t.tm_min, t.tm_sec, \
(int)tv.tv_usec / 1000); \
}
Expand Down

0 comments on commit 8b327e6

Please sign in to comment.