diff options
-rw-r--r-- | xxxterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xxxterm.c b/xxxterm.c index e8a5205..6bd6581 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -5144,7 +5144,7 @@ hint_continue(struct tab *t) char *s; const gchar *errstr = NULL; gboolean rv = TRUE; - long long i; + int i; if (!(c[0] == '.' || c[0] == ',')) goto done; @@ -5161,7 +5161,7 @@ hint_continue(struct tab *t) show_oops(t, "invalid numerical hint %s", &c[1]); goto done; } - s = g_strdup_printf("hints.updateHints(%lld);", i); + s = g_strdup_printf("hints.updateHints(%d", i); run_script(t, s); g_free(s); } else { |