SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
14
x11/gnome/terminal/patches/patch-src_terminal-app_cc
Normal file
14
x11/gnome/terminal/patches/patch-src_terminal-app_cc
Normal file
|
@ -0,0 +1,14 @@
|
|||
Use correct modified for num (int) and drop undefined %I
|
||||
|
||||
Index: src/terminal-app.cc
|
||||
--- src/terminal-app.cc.orig
|
||||
+++ src/terminal-app.cc
|
||||
@@ -488,7 +488,7 @@ menu_append_numbered (GMenu *menu,
|
||||
str = g_string_sized_new (strlen (label) + 4 + 1 + 8);
|
||||
|
||||
if (num < 10)
|
||||
- g_string_append_printf (str, "_%Id. ", num);
|
||||
+ g_string_append_printf (str, "_%d. ", num);
|
||||
else if (num < 36)
|
||||
g_string_append_printf (str, "_%c. ", (char)('A' + num - 10));
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue