summaryrefslogtreecommitdiff
path: root/cups/langprintf.c
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2007-02-14 19:18:46 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2007-02-14 19:18:46 +0000
commitb86bc4cf571c35972a94a634ea884baff9799fa9 (patch)
tree9337cdf0bf4a63518307072ab0c75ce665c8a20a /cups/langprintf.c
parent411affcf6ae840dbe82786a1f42c16cb3127d20f (diff)
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@266 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups/langprintf.c')
-rw-r--r--cups/langprintf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cups/langprintf.c b/cups/langprintf.c
index da835dc28..ebdccf244 100644
--- a/cups/langprintf.c
+++ b/cups/langprintf.c
@@ -1,10 +1,10 @@
/*
- * "$Id: langprintf.c 5926 2006-09-05 20:45:47Z mike $"
+ * "$Id: langprintf.c 6188 2007-01-10 16:23:06Z mike $"
*
* Localized printf/puts functions for the Common UNIX Printing
* System (CUPS).
*
- * Copyright 2002-2006 by Easy Software Products.
+ * Copyright 2002-2007 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
* property of Easy Software Products and are protected by Federal
@@ -88,7 +88,7 @@ _cupsLangPrintf(FILE *fp, /* I - File to write to */
*/
if (bytes > 0)
- return (fwrite(output, 1, bytes, fp));
+ return ((int)fwrite(output, 1, bytes, fp));
else
return (bytes);
}
@@ -133,7 +133,7 @@ _cupsLangPuts(FILE *fp, /* I - File to write to */
*/
if (bytes > 0)
- return (fwrite(output, 1, bytes, fp));
+ return ((int)fwrite(output, 1, bytes, fp));
else
return (bytes);
}
@@ -224,5 +224,5 @@ _cupsSetLocale(char *argv[]) /* IO - Command-line arguments */
/*
- * End of "$Id: langprintf.c 5926 2006-09-05 20:45:47Z mike $".
+ * End of "$Id: langprintf.c 6188 2007-01-10 16:23:06Z mike $".
*/