From d76e57f8c608fcf1765cca9bc1a92908d19bfe4a Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 1 May 2019 16:02:34 -0400 Subject: Mirror changes from master. --- cups/snprintf.c | 10 +++++----- 1 file 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; -- cgit v1.2.1