diff options
author | danfe <danfe@FreeBSD.org> | 2005-02-15 17:40:04 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2005-02-15 17:40:04 +0800 |
commit | fb1789df0fdebebda0dcf26df8dc2a666a3f5ffd (patch) | |
tree | aa6d97ea0f285473bbeb173586b6692109ea9e09 /audio | |
parent | b0aa3290a8b4dd6cf4604574033dbb3240fb903a (diff) | |
download | freebsd-ports-gnome-fb1789df0fdebebda0dcf26df8dc2a666a3f5ffd.tar.gz freebsd-ports-gnome-fb1789df0fdebebda0dcf26df8dc2a666a3f5ffd.tar.zst freebsd-ports-gnome-fb1789df0fdebebda0dcf26df8dc2a666a3f5ffd.zip |
Patch correctly for missing X/Open siginfo field instead of masking it out.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/tunesbrowser/files/patch-main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/audio/tunesbrowser/files/patch-main.c b/audio/tunesbrowser/files/patch-main.c index c6e8d99ba9ad..76f78d25045b 100644 --- a/audio/tunesbrowser/files/patch-main.c +++ b/audio/tunesbrowser/files/patch-main.c @@ -1,15 +1,14 @@ --- main.c.orig Mon Jan 3 21:58:29 2005 +++ main.c Wed Feb 2 21:56:11 2005 -@@ -38,8 +38,8 @@ +@@ -38,7 +38,7 @@ { fprintf(stderr, "Oops! TunesBrowser has crashed. Sorry about that!\n"); fprintf(stderr, "This probably won't be of any use unless you feel like debugging,\n"); - fprintf(stderr, "but the crash occured because of %p being bad.\n", siginfo->si_ptr); ++ fprintf(stderr, "but the crash occured because of %p being bad.\n", siginfo->si_value.sigval_ptr); #if 0 -+ fprintf(stderr, "but the crash occured because of %p being bad.\n", siginfo->si_ptr); fprintf(stderr, "\n\nRaised SIGSTOP. You can now attach a debugger.\n"); fprintf(stderr, "Attach to PID %i\n", getpid()); - raise(SIGSTOP); @@ -66,11 +66,11 @@ int ret; |