diff options
-rw-r--r-- | src/im-application-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c index 3b06798..cbabc64 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -178,7 +178,7 @@ unescape_action_name (const gchar *name) (one = g_ascii_xdigit_value (name[i + 1])) >= 0 && (two = g_ascii_xdigit_value (name[i + 2])) >= 0) { - g_string_append_c (unescaped, (one << 4) & two); + g_string_append_c (unescaped, (one << 4) | two); i += 2; } else |