diff options
author | jtb <jtb@pkgsrc.org> | 2003-06-23 21:04:35 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2003-06-23 21:04:35 +0000 |
commit | 70b2baae6a31f0bf9802594186183b369322eef7 (patch) | |
tree | 7f78d7f042088cd265dbec9b30f3858631923a2c /misc/gperiodic | |
parent | ec24dc600be40c7668592f6d3663a005aab9542f (diff) | |
download | pkgsrc-70b2baae6a31f0bf9802594186183b369322eef7.tar.gz |
Use type int instead of signed char in code making comparisons to EOF.
Diffstat (limited to 'misc/gperiodic')
-rw-r--r-- | misc/gperiodic/distinfo | 4 | ||||
-rw-r--r-- | misc/gperiodic/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/misc/gperiodic/distinfo b/misc/gperiodic/distinfo index cc8ecd87bb0..9eed0b90bfd 100644 --- a/misc/gperiodic/distinfo +++ b/misc/gperiodic/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2003/05/10 01:31:25 jtb Exp $ +$NetBSD: distinfo,v 1.4 2003/06/23 21:04:37 jtb Exp $ SHA1 (gperiodic-2.0.4.tar.gz) = 0bb22ec25dbddf75c296a59345182d234e465ac1 Size (gperiodic-2.0.4.tar.gz) = 39868 bytes SHA1 (patch-aa) = 992911a0502c39a30db81179d764590c62bd57d0 SHA1 (patch-ab) = 24058fac21d3418a11752cb8ca2cd9777c7350d1 -SHA1 (patch-ac) = a43ecea0b7807fd1c2b537033a4c8d038f461422 +SHA1 (patch-ac) = edf9394fdba646b6f149d738634559d556f163a8 diff --git a/misc/gperiodic/patches/patch-ac b/misc/gperiodic/patches/patch-ac index 5eb55b7f748..69426aca265 100644 --- a/misc/gperiodic/patches/patch-ac +++ b/misc/gperiodic/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.1 2003/05/10 01:31:26 jtb Exp $ +$NetBSD: patch-ac,v 1.2 2003/06/23 21:04:38 jtb Exp $ --- gperiodic.c.orig +++ gperiodic.c @@ -7,7 +7,7 @@ $NetBSD: patch-ac,v 1.1 2003/05/10 01:31:26 jtb Exp $ int main(int argc, char** argv) { - char ch; -+ signed char ch; ++ int ch; textdomain (PACKAGE); bindtextdomain(PACKAGE, GPERIODIC_LOCALE_DIR); |