Changeset: 1edf96e9c6b1 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1edf96e9c6b1
Modified Files:
common/stream/stream.c
Branch: default
Log Message:
Fix after merge.
diffs (12 lines):
diff --git a/common/stream/stream.c b/common/stream/stream.c
--- a/common/stream/stream.c
+++ b/common/stream/stream.c
@@ -515,7 +515,7 @@ error(stream *s)
snprintf(buf, sizeof(buf), "error writing file %s\n", s->name);
return strdup(buf);
case MNSTR_TIMEOUT:
- snprintf(buf, BUFSIZ, "timeout on %s\n", s->name);
+ snprintf(buf, sizeof(buf), "timeout on %s\n", s->name);
return strdup(buf);
}
return strdup("Unknown error");
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list