aboutsummaryrefslogtreecommitdiff
path: root/media/sound/camp/camp-1.5.3455.diff
diff options
context:
space:
mode:
authorrafael2k <rafael2k@370017ae-e619-0410-ac65-c121f96126d4>2007-02-26 19:37:43 +0000
committerrafael2k <rafael2k@370017ae-e619-0410-ac65-c121f96126d4>2007-02-26 19:37:43 +0000
commit0b57714c533ac2a33065e85bfbfef6733861092c (patch)
tree52af553483a18a73fe504c69bb0fce92a4503061 /media/sound/camp/camp-1.5.3455.diff
parent93f38922499aa8677d35fedfb1b8e9b5ccbec07d (diff)
downloadslackbuilds-0b57714c533ac2a33065e85bfbfef6733861092c.tar.gz
slackbuilds-0b57714c533ac2a33065e85bfbfef6733861092c.tar.bz2
more location fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1061 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'media/sound/camp/camp-1.5.3455.diff')
-rw-r--r--media/sound/camp/camp-1.5.3455.diff64
1 files changed, 64 insertions, 0 deletions
diff --git a/media/sound/camp/camp-1.5.3455.diff b/media/sound/camp/camp-1.5.3455.diff
new file mode 100644
index 00000000..be4e4dfa
--- /dev/null
+++ b/media/sound/camp/camp-1.5.3455.diff
@@ -0,0 +1,64 @@
+diff -Naur camp-1.5.3455.orig/fork.c camp-1.5.3455/fork.c
+--- camp-1.5.3455.orig/fork.c 2002-03-19 19:36:04.000000000 -0300
++++ camp-1.5.3455/fork.c 2006-10-20 10:36:23.000000000 -0200
+@@ -86,7 +86,7 @@
+
+ default:
+ quitmode = 1;
+- exit();
++ exit(0);
+
+ }
+ }
+@@ -111,7 +111,7 @@
+
+ if ( quitmode == 0 ) quitmode = 3; else
+ quitmode = 2;
+- exit();
++ exit(0);
+
+ }
+
+@@ -127,7 +127,7 @@
+ fd = fopen(PID_FILE, "r");
+ if ( !fd ) {
+ printf("No session to steal!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -174,7 +174,7 @@
+ fd = fopen(buf, "r");
+ if ( !fd ) {
+ printf("No data found, can't steal!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n%d\n%d\n", &slavepid, &filenumber, &currentfile.frame);
+ fclose(fd);
+@@ -210,7 +210,7 @@
+ fd = fopen(PID_FILE, "r");
+ if ( !fd ) {
+ printf("No session to kill!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -222,7 +222,7 @@
+ fd = fopen(buf, "r");
+ if ( !fd ) {
+ printf("No session to kill!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -235,5 +235,5 @@
+ sprintf(buf, "%s/time.camp", TMP_DIR);
+ unlink(buf);
+ printf("done!\n");
+- exit();
++ exit(0);
+ }