blob: 4eb9e357498ae2a8c3f19dfb39d0651e0fd94519 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-al,v 1.2 2012/06/13 08:15:15 mef Exp $
Convert varargs-macros to old-style macros, to make the package
compile when using gcc 2.95.
--- libfstt/table_ebdt.cc.orig Sat Feb 14 22:50:02 2004
+++ libfstt/table_ebdt.cc Sat Feb 14 22:50:21 2004
@@ -52,7 +52,7 @@
case 3: // obsolete
case 4: // unsupported
default:
- debug("EBDT table bitmap format = %d\n", format);
+ debug1("EBDT table bitmap format = %d\n", format);
return -1;
case 5: // metrics in EBLC instead
debug("EBDT table bitmap format = 5\n");
@@ -102,7 +102,7 @@
}
case 8:
case 9: // composite bitmap
- debug("EBDT table bitmap format = %d\n", format);
+ debug1("EBDT table bitmap format = %d\n", format);
break;
}
|