summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorAndrew O. Shadoura <bugzilla@tut.by>2011-03-19 21:38:55 +0200
committerAndrew O. Shadoura <bugzilla@tut.by>2011-03-19 21:38:55 +0200
commitacfc53668361029d5b81bac1fe4c6e01129c8685 (patch)
treea28733fc94e772e0f3614e05fc42871f1bcad752 /debian
parentfb29ba4a58cb973bc081f6efa2084958cc9af0ad (diff)
guess.scm: use (format)
Diffstat (limited to 'debian')
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/use-format.diff15
2 files changed, 16 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
index 3cb8db3..7e88d01 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
fix-typo-on-mowgli-url.hg219e1937b9f5.diff
+use-format.diff
use-proper-format-string.diff
diff --git a/debian/patches/use-format.diff b/debian/patches/use-format.diff
new file mode 100644
index 0000000..90af10a
--- /dev/null
+++ b/debian/patches/use-format.diff
@@ -0,0 +1,15 @@
+Description: use (format)
+Bug: http://jira.atheme.org/browse/LG-3
+Author: Jakub Wilk <jwilk@debian.org>
+
+--- a/src/libguess/guess.scm
++++ b/src/libguess/guess.scm
+@@ -168,7 +168,7 @@
+
+ (define (main args)
+ (unless (= (length args) 2)
+- (error "usage: ~a <outout-file.c>" (car args)))
++ (error (format #f "usage: ~a <output-file.c>" (car args))))
+ (with-output-to-file (cadr args)
+ (lambda ()
+ (print "/* State transition table for character code guessing */")