summaryrefslogtreecommitdiffstats
path: root/src/lib/krb4/win_glue.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/krb4/win_glue.c')
-rw-r--r--src/lib/krb4/win_glue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb4/win_glue.c b/src/lib/krb4/win_glue.c
index c22584656..9d85a1c3f 100644
--- a/src/lib/krb4/win_glue.c
+++ b/src/lib/krb4/win_glue.c
@@ -20,12 +20,12 @@
* but might be ordinary pointers on real machines. Printf modifiers
* scattered through the code don't cut it,
* since they might break on real machines. Microloss
- * didn't provide a function to print a char FAR *, so we wrote one.
+ * didn't provide a function to print a char *, so we wrote one.
* It gets #define'd to fputs on real machines.
*/
int
far_fputs(string, stream)
- char FAR *string;
+ char *string;
FILE *stream;
{
return fprintf(stream, "%Fs", string);