diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-18 13:31:37 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-18 13:31:37 +0000 |
commit | 2c3f0ebae9499a70314ba4520099d0006eb8e7fe (patch) | |
tree | 301950e90806063d3eb72909525387d0a9ae7c30 | |
parent | 60ba4476dfef5fae48b85d54e376a3ca27442113 (diff) | |
download | riscv-openocd-2c3f0ebae9499a70314ba4520099d0006eb8e7fe.zip riscv-openocd-2c3f0ebae9499a70314ba4520099d0006eb8e7fe.tar.gz riscv-openocd-2c3f0ebae9499a70314ba4520099d0006eb8e7fe.tar.bz2 |
- remove build warning from keep_alive
- remove surplus linefeeds
git-svn-id: svn://svn.berlios.de/openocd/trunk@831 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/helper/log.c | 2 | ||||
-rw-r--r-- | src/helper/time_support.c | 3 | ||||
-rw-r--r-- | src/main.c | 24 |
3 files changed, 10 insertions, 19 deletions
diff --git a/src/helper/log.c b/src/helper/log.c index 0a41624..ca9f0a7 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 e97993b..06c1082 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; @@ -29,24 +29,18 @@ void openocd_sleep_postlude() { } - -/* - This is the main entry for developer PC hosted OpenOCD. - - OpenOCD can also be used as a library that is linked with - another application(not mainstream yet, but possible), e.g. - w/as an embedded application. - - Those applications will have their own main() implementation - and use bits and pieces from openocd.c. - -*/ - +/* This is the main entry for developer PC hosted OpenOCD. + * + * OpenOCD can also be used as a library that is linked with + * another application(not mainstream yet, but possible), e.g. + * w/as an embedded application. + * + * Those applications will have their own main() implementation + * and use bits and pieces from openocd.c. */ extern int openocd_main(int argc, char *argv[]); + int main(int argc, char *argv[]) { return openocd_main(argc, argv); } - - |