Date: Thu, 19 Aug 2010 21:59:39 +0000 (UTC) From: Edwin Groothuis <edwin@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211517 - head/usr.bin/calendar Message-ID: <201008192159.o7JLxdvp017333@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: edwin Date: Thu Aug 19 21:59:39 2010 New Revision: 211517 URL: http://svn.freebsd.org/changeset/base/211517 Log: '\0' -> 0 Fix silly mistake by being overly zeaolous[sp] of applying the style rules. Modified: head/usr.bin/calendar/locale.c Modified: head/usr.bin/calendar/locale.c ============================================================================== --- head/usr.bin/calendar/locale.c Thu Aug 19 17:00:33 2010 (r211516) +++ head/usr.bin/calendar/locale.c Thu Aug 19 21:59:39 2010 (r211517) @@ -76,7 +76,7 @@ setnnames(void) int i, l; struct tm tm; - memset(&tm, '\0', sizeof(struct tm)); + memset(&tm, 0, sizeof(struct tm)); for (i = 0; i < 7; i++) { tm.tm_wday = i; strftime(buf, sizeof(buf), "%a", &tm); @@ -104,7 +104,7 @@ setnnames(void) fndays[i].len = strlen(buf); } - memset(&tm, '\0', sizeof(struct tm)); + memset(&tm, 0, sizeof(struct tm)); for (i = 0; i < 12; i++) { tm.tm_mon = i; strftime(buf, sizeof(buf), "%b", &tm);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008192159.o7JLxdvp017333>