diff options
author | Marco Peereboom <marco@conformal.com> | 2012-01-24 10:54:42 -0600 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2012-01-24 10:54:42 -0600 |
commit | e1e31b4e2e1329beb84cf73f94480ff82f71db54 (patch) | |
tree | b311a1d160e2d2bc1d65d4dd9b72ccef2cb4acbb | |
parent | ee1982fb44d75dd9b077145f85c12e6af73e2c1d (diff) | |
download | xombrero-e1e31b4e2e1329beb84cf73f94480ff82f71db54.tar.gz |
convert long long to int to shut mingw up
-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 { |