Skip to content

Commit 6dc2287

Browse files
committed
Fix another Windows build issue.
1 parent a0d3fde commit 6dc2287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

htmldoc/mmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ mmdLoadString(mmd_t *root, /* I - Root node for document or `NULL` for a n
12231223
if ((fp = fopen(tempfile, "w+")) == NULL)
12241224
return (root);
12251225

1226-
fputs(fp, s);
1226+
fputs(s, fp);
12271227
rewind(fp);
12281228

12291229
#else // POSIX

0 commit comments

Comments
 (0)