fixed: arguments to fputs were the wrong way around
This commit is contained in:
parent
5785bb133b
commit
be3597ddbe
|
@ -19,6 +19,6 @@ main()
|
||||||
puts("typedef long size_type;");
|
puts("typedef long size_type;");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
fputs(stderr, "funny pointer size\n");
|
fputs("funny pointer size\n", stderr);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue