Changeset: bf65e586bfda for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=bf65e586bfda
Modified Files:
clients/mapiclient/stethoscope.c
Branch: default
Log Message:
For the umpteenth time: strlen returns size_t.
diffs (13 lines):
diff --git a/clients/mapiclient/stethoscope.c b/clients/mapiclient/stethoscope.c
--- a/clients/mapiclient/stethoscope.c
+++ b/clients/mapiclient/stethoscope.c
@@ -139,7 +139,8 @@ convertOldFormat(char *inputfile)
{ FILE *fdin;
char basefile[BUFSIZ];
char buf[BUFSIZ]={0}, *response = buf, *e;
- int first = 0, i = 0, n, len;
+ int first = 0, i = 0, n;
+ size_t len;
EventRecord event;
fprintf(stderr, "Converting a file to JSON\n");
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list