summaryrefslogtreecommitdiff
path: root/navit/debug.h
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-07-15 07:05:49 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-07-15 07:05:49 +0000
commitc90a10c34412e02f5ff749ee243a61952f1b4053 (patch)
tree04624d0d6d5ad0b99ea49294429f041f6b17fa75 /navit/debug.h
parent3ae76ea2a8eb881cec466d0672b9cc780abdeb46 (diff)
downloadnavit-c90a10c34412e02f5ff749ee243a61952f1b4053.tar.gz
Fix:Core:Some const problems
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3498 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/debug.h')
-rw-r--r--navit/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/debug.h b/navit/debug.h
index 7a041c9f8..b452f1837 100644
--- a/navit/debug.h
+++ b/navit/debug.h
@@ -61,7 +61,7 @@ struct debug *debug_new(struct attr *parent, struct attr **attrs);
int debug_level_get(const char *name);
void debug_vprintf(int level, const char *module, const int mlen, const char *function, const int flen, int prefix, const char *fmt, va_list ap);
void debug_printf(int level, const char *module, const int mlen, const char *function, const int flen, int prefix, const char *fmt, ...);
-void debug_assert_fail(char *module, const int mlen, const char *function, const int flen, char *file, int line, char *expr);
+void debug_assert_fail(const char *module, const int mlen, const char *function, const int flen, const char *file, int line, const char *expr);
void debug_destroy(void);
void debug_set_logfile(const char *path);
void debug_dump_mallocs(void);