summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-05-01 16:02:34 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-05-01 16:02:34 -0400
commitd76e57f8c608fcf1765cca9bc1a92908d19bfe4a (patch)
tree64458da307fd771e569d9e2adcb0d3087b95c0a2
parenta2eba043171fd8fab45d30a831b4ee031a751d63 (diff)
downloadcups-d76e57f8c608fcf1765cca9bc1a92908d19bfe4a.tar.gz
Mirror changes from master.
-rw-r--r--cups/snprintf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cups/snprintf.c b/cups/snprintf.c
index c5d8908c0..72b3fc87d 100644
--- a/cups/snprintf.c
+++ b/cups/snprintf.c
@@ -1,8 +1,8 @@
/*
* snprintf functions for CUPS.
*
- * Copyright 2007-2013 by Apple Inc.
- * Copyright 1997-2007 by Easy Software Products.
+ * Copyright © 2007-2019 by Apple Inc.
+ * Copyright © 1997-2007 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
@@ -177,7 +177,7 @@ _cups_vsnprintf(char *buffer, /* O - Output buffer */
break;
sprintf(temp, tformat, va_arg(ap, double));
- templen = strlen(temp):
+ templen = strlen(temp);
bytes += (int)templen;
@@ -208,7 +208,7 @@ _cups_vsnprintf(char *buffer, /* O - Output buffer */
break;
sprintf(temp, tformat, va_arg(ap, int));
- templen = strlen(temp):
+ templen = strlen(temp);
bytes += (int)templen;
@@ -232,7 +232,7 @@ _cups_vsnprintf(char *buffer, /* O - Output buffer */
break;
sprintf(temp, tformat, va_arg(ap, void *));
- templen = strlen(temp):
+ templen = strlen(temp);
bytes += (int)templen;