diff options
author | mef <mef@pkgsrc.org> | 2015-01-24 13:42:18 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2015-01-24 13:42:18 +0000 |
commit | 6ab2f4695295b87fa12d73cbdf5b1f7cd4107099 (patch) | |
tree | 9a959bfd2200a7c9c22dbeef32f4946fb481715a /print/bibtool | |
parent | 6fee35dfb7a8a2dc7a907a2c63f15b3e066c332c (diff) | |
download | pkgsrc-6ab2f4695295b87fa12d73cbdf5b1f7cd4107099.tar.gz |
Remove left unremoved patch-main.c.
Diffstat (limited to 'print/bibtool')
-rw-r--r-- | print/bibtool/patches/patch-main.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/print/bibtool/patches/patch-main.c b/print/bibtool/patches/patch-main.c deleted file mode 100644 index a436dd8fa17..00000000000 --- a/print/bibtool/patches/patch-main.c +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-main.c,v 1.1 2012/12/24 01:50:57 dholland Exp $ - -Remove wrong casts. - ---- main.c~ 2004-02-08 09:41:38.000000000 +0000 -+++ main.c -@@ -789,10 +789,10 @@ static int update_crossref(db,rec) / - /* */ - t = *++hp; t++; /* */ - (void)sp_open(t); /* Try to extract */ -- if ( (s = SParseSymbol(&t)) == (Uchar)NULL ) /* the crossref as symbol*/ -+ if ( (s = SParseSymbol(&t)) == NULL ) /* the crossref as symbol*/ - { return 0; } /* */ - /* */ -- if ( (s = db_new_key(db,s)) == (Uchar)NULL ) /* */ -+ if ( (s = db_new_key(db,s)) == NULL ) /* */ - { ERROR2("Crossref not found: ",(char*)s); /* */ - return 0; /* */ - } /* */ |