]> git.draconx.ca Git - gob-dx.git/blobdiff - src/lexer.l
Release 0.93.3
[gob-dx.git] / src / lexer.l
index b155aa76d8d1ada419c4a96a85ba46f4a678b126..941a46022f67b10bf1d0f95686c76792e700d8f1 100644 (file)
@@ -51,9 +51,9 @@ static void
 clear_cbuf(void)
 {
        if(!cbuf) {
-               cbuf = g_string_new("");
+               cbuf = g_string_new(NULL);
        } else {
-               cbuf = g_string_assign(cbuf,"");
+               cbuf = g_string_assign(cbuf, "");
        }
 }