diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-08-05 12:27:18 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-08-05 12:27:18 +0000 |
commit | f370d70670bd5e30befe6fbfbc8d472e760f032b (patch) | |
tree | 881165e968757d8feae4e747b9407d98c328d373 /src/helper/log.h | |
parent | 20f505f695df9d9ba4c20780848336afec240a31 (diff) | |
download | riscv-openocd-f370d70670bd5e30befe6fbfbc8d472e760f032b.zip riscv-openocd-f370d70670bd5e30befe6fbfbc8d472e760f032b.tar.gz riscv-openocd-f370d70670bd5e30befe6fbfbc8d472e760f032b.tar.bz2 |
Duane Ellis: fix warnings
git-svn-id: svn://svn.berlios.de/openocd/trunk@890 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/log.h')
-rw-r--r-- | src/helper/log.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/log.h b/src/helper/log.h index f57ed08..c329fb5 100644 --- a/src/helper/log.h +++ b/src/helper/log.h @@ -59,8 +59,8 @@ __attribute__ ((format (printf, 5, 6))); extern int log_register_commands(struct command_context_s *cmd_ctx); extern int log_init(struct command_context_s *cmd_ctx); extern int set_log_output(struct command_context_s *cmd_ctx, FILE *output); -extern void keep_alive(); -extern void kept_alive(); +extern void keep_alive(void); +extern void kept_alive(void); typedef void (*log_callback_fn)(void *priv, const char *file, int line, const char *function, const char *string); |