From 28e75d4c453dcf7b1d1630815036d0236cfa0034 Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Sun, 11 Jan 2015 10:29:17 +0100 Subject: Cleanup: Refactor option_table_T.number: long --> int. --- src/nvim/hardcopy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/hardcopy.h') diff --git a/src/nvim/hardcopy.h b/src/nvim/hardcopy.h index 9a74396ef4..4ead8dd5d4 100644 --- a/src/nvim/hardcopy.h +++ b/src/nvim/hardcopy.h @@ -40,7 +40,7 @@ typedef struct { typedef struct { const char *name; int hasnum; - long number; + int number; char_u *string; /* points into option string */ int strlen; int present; -- cgit