Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2007-09-12 05:56:50 +0400
committerStephen Swaney <sswaney@centurytel.net>2007-09-12 05:56:50 +0400
commit59fe9674765aeee28f2de846b5bb7ebbe499ba4d (patch)
tree3f75b924ffc6e5c53de508a0edb99b8b1e681f49 /intern/moto/include
parent3740c30968322ffb493467df478e0db7f3972b2b (diff)
more gcc 4.1.x warning cleanup:
applied MT_QueryAssert_patch.diff part of patch [#6994] Fixing warnings: conversion from string constant to char * Submitted by Renato Perini (mjordan). Thanks, Renato!
Diffstat (limited to 'intern/moto/include')
-rw-r--r--intern/moto/include/MT_assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/moto/include/MT_assert.h b/intern/moto/include/MT_assert.h
index c20f5699ea3..54aea403cda 100644
--- a/intern/moto/include/MT_assert.h
+++ b/intern/moto/include/MT_assert.h
@@ -48,7 +48,7 @@
// file, line, predicate form the message to ask, *do_assert should be set
// to 0 to ignore.
// returns 1 to break, false to ignore
-MT_CDECL int MT_QueryAssert(char *file, int line, char *predicate, int *do_assert);
+MT_CDECL int MT_QueryAssert(const char *file, int line, const char *predicate, int *do_assert);
#ifdef NDEBUG