diff options
author | rafan <rafan@FreeBSD.org> | 2007-08-11 17:21:15 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-08-11 17:21:15 +0800 |
commit | 21778567e4edaf201c18c048574053e0482381fc (patch) | |
tree | 5662c7bd56619cc09a3f0e6bdf2086e4cd18ff7a /misc/asbutton | |
parent | e0795bd8c9844864960b175b2898a1515fca80cb (diff) | |
download | freebsd-ports-gnome-21778567e4edaf201c18c048574053e0482381fc.tar.gz freebsd-ports-gnome-21778567e4edaf201c18c048574053e0482381fc.tar.zst freebsd-ports-gnome-21778567e4edaf201c18c048574053e0482381fc.zip |
- Fix SIGSEGV after recent fix for gcc 4
PR: ports/115166
Submitted by: Eugene Grosbein <eugen at grosbein.pp.ru>
Diffstat (limited to 'misc/asbutton')
-rw-r--r-- | misc/asbutton/Makefile | 2 | ||||
-rw-r--r-- | misc/asbutton/files/patch-asbutton.c | 9 |
2 files changed, 4 insertions, 7 deletions
diff --git a/misc/asbutton/Makefile b/misc/asbutton/Makefile index e528e6efcf17..5b9271dd0f34 100644 --- a/misc/asbutton/Makefile +++ b/misc/asbutton/Makefile @@ -7,7 +7,7 @@ PORTNAME= asbutton PORTVERSION= 0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc windowmaker afterstep MASTER_SITES= http://www.tigr.net/afterstep/download/asbutton/ diff --git a/misc/asbutton/files/patch-asbutton.c b/misc/asbutton/files/patch-asbutton.c index caeeb866c5c9..dfbbca2cec9b 100644 --- a/misc/asbutton/files/patch-asbutton.c +++ b/misc/asbutton/files/patch-asbutton.c @@ -1,14 +1,11 @@ - -$FreeBSD$ - ---- asbutton.c.orig -+++ asbutton.c +--- asbutton.c.orig 1999-07-17 05:59:20.000000000 +0800 ++++ asbutton.c 2007-08-03 18:13:09.000000000 +0800 @@ -605,7 +605,7 @@ continue; } if ( !strncasecmp(line, "button", 6)) - if (atoi(&(char)line[6]) == position) -+ if (atoi((char)line[6]) == position) ++ if (atoi(line+6) == position) break; } } while (1); |