summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c
index eda7deb..1cf6364 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -547,7 +547,7 @@ static VbResult normal_input_open(Client *c, const NormalCmdInfo *info)
static VbResult normal_mark(Client *c, const NormalCmdInfo *info)
{
- glong current;
+ guint64 current;
char *js, *mark;
int idx;
@@ -570,7 +570,7 @@ static VbResult normal_mark(Client *c, const NormalCmdInfo *info)
current = c->state.scroll_top;
/* jump to the location */
- js = g_strdup_printf("window.scroll(window.screenLeft,%ld);", c->state.marks[idx]);
+ js = g_strdup_printf("window.scroll(window.screenLeft,%" G_GUINT64_FORMAT ");", c->state.marks[idx]);
ext_proxy_eval_script(c, js, NULL);
g_free(js);