diff options
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/log.c | 2 | ||||
-rw-r--r-- | src/helper/time_support.c | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/helper/log.c b/src/helper/log.c index 0a416244..ca9f0a7b 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -356,7 +356,7 @@ void keep_alive() current_time=timeval_ms(); if (current_time-last_time>1000) { - LOG_WARNING("keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%d)", current_time-last_time); + LOG_WARNING("keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%lld)", current_time-last_time); last_time=current_time; } else if (current_time-last_time>500) { diff --git a/src/helper/time_support.c b/src/helper/time_support.c index e97993be..06c10828 100644 --- a/src/helper/time_support.c +++ b/src/helper/time_support.c @@ -110,9 +110,6 @@ int duration_stop_measure(duration_t *duration, char **text) return ERROR_OK; } - - - long long timeval_ms() { struct timeval now; |