diff options
author | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-07-15 07:05:49 +0000 |
---|---|---|
committer | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2010-07-15 07:05:49 +0000 |
commit | c90a10c34412e02f5ff749ee243a61952f1b4053 (patch) | |
tree | 04624d0d6d5ad0b99ea49294429f041f6b17fa75 /navit/debug.c | |
parent | 3ae76ea2a8eb881cec466d0672b9cc780abdeb46 (diff) | |
download | navit-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.c')
-rw-r--r-- | navit/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/debug.c b/navit/debug.c index 158c4426d..59558b560 100644 --- a/navit/debug.c +++ b/navit/debug.c @@ -204,7 +204,7 @@ debug_printf(int level, const char *module, const int mlen,const char *function, } void -debug_assert_fail(char *module, const int mlen,const char *function, const int flen, char *file, int line, char *expr) +debug_assert_fail(const char *module, const int mlen,const char *function, const int flen, const char *file, int line, const char *expr) { debug_printf(0,module,mlen,function,flen,1,"%s:%d assertion failed:%s\n", file, line, expr); abort(); |