Changeset: 6affca8a5339 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=6affca8a5339
Modified Files:
        monetdb5/modules/mal/joinpath.c
Branch: Oct2014
Log Message:

Only use constant strings for format string arguments.


diffs (12 lines):

diff --git a/monetdb5/modules/mal/joinpath.c b/monetdb5/modules/mal/joinpath.c
--- a/monetdb5/modules/mal/joinpath.c
+++ b/monetdb5/modules/mal/joinpath.c
@@ -305,7 +305,7 @@ ALGjoinPath(Client cntxt, MalBlkPtr mb, 
                        for( --top; top>=0; top--)
                                BBPunfix(joins[top]->batCacheid);
                        GDKfree(joins);
-                       throw(MAL, "algebra.joinPath", error? 
SEMANTIC_TYPE_MISMATCH: INTERNAL_BAT_ACCESS);
+                       throw(MAL, "algebra.joinPath", "%s", error? 
SEMANTIC_TYPE_MISMATCH: INTERNAL_BAT_ACCESS);
                }
                joins[top++] = b;
        }
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to