pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/plist-utils



Module Name:    pkgsrc
Committed By:   joerg
Date:           Fri Dec 16 00:01:05 UTC 2016

Modified Files:
        pkgsrc/pkgtools/plist-utils: Makefile
        pkgsrc/pkgtools/plist-utils/files: plist_getline.c

Log Message:
Fix format string. Bump version.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/pkgtools/plist-utils/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/pkgtools/plist-utils/files/plist_getline.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/plist-utils/Makefile
diff -u pkgsrc/pkgtools/plist-utils/Makefile:1.1 pkgsrc/pkgtools/plist-utils/Makefile:1.2
--- pkgsrc/pkgtools/plist-utils/Makefile:1.1    Sat Oct  1 18:37:15 2016
+++ pkgsrc/pkgtools/plist-utils/Makefile        Fri Dec 16 00:01:04 2016
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2016/10/01 18:37:15 kamil Exp $
+# $NetBSD: Makefile,v 1.2 2016/12/16 00:01:04 joerg Exp $
 #
 
-PKGNAME=       plist-utils-20160731
+PKGNAME=       plist-utils-20161216
 CATEGORIES=    pkgtools
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/pkgtools/plist-utils/files/plist_getline.c
diff -u pkgsrc/pkgtools/plist-utils/files/plist_getline.c:1.1 pkgsrc/pkgtools/plist-utils/files/plist_getline.c:1.2
--- pkgsrc/pkgtools/plist-utils/files/plist_getline.c:1.1       Sat Oct  1 18:37:15 2016
+++ pkgsrc/pkgtools/plist-utils/files/plist_getline.c   Fri Dec 16 00:01:04 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: plist_getline.c,v 1.1 2016/10/01 18:37:15 kamil Exp $ */
+/* $NetBSD: plist_getline.c,v 1.2 2016/12/16 00:01:04 joerg Exp $ */
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: plist_getline.c,v 1.1 2016/10/01 18:37:15 kamil Exp $");
+__RCSID("$NetBSD: plist_getline.c,v 1.2 2016/12/16 00:01:04 joerg Exp $");
 
 #include <assert.h>
 #include <err.h>
@@ -53,7 +53,7 @@ repeat:
        if ((buf = fgetln(stream, &len)) != NULL) {
                ++lineno;
                if (len == 0) {
-                       warnx("Empty line at %d -- skipped", lineno);
+                       warnx("Empty line at %zu -- skipped", lineno);
                        goto repeat;
                }
                /* Handle proper line with the \n ending */



Home | Main Index | Thread Index | Old Index