hi rohan,
i'm not sure whether i already contacted you about that (or whether
somebody other has), but:
i'm part of the Debian pkg-multimedia team, that maintains a number of
multimedia related packages in Debian, among them "jack-tools", which is
your collection of jack utilities (as found on [1]).
recently, jack-tools have stopped compiling (see [2]) due to stricter
compiler settings.
attached is a very small patch that fixes this issue.
it would be great if you could include it in your repository (i have to
admit, that i miserably failed at cloning your darcs repository in any
meaningful way; that's why i can only submit an "ordinary" patch)
fgmasdr
IOhannes
[1] http://slavepianos.org/rd/f/207983/
[2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643413
Description: fix FTBFS with printf where no format is specified
Author: IOhannes m zmölnig
--- jack-tools.orig/jack.dl.c
+++ jack-tools/jack.dl.c
@@ -17,7 +17,7 @@
void fail(char *s)
{
- fprintf(stderr, s);
+ fprintf(stderr, "%s", s);
exit(EXIT_FAILURE);
}