From 9a0c404d5f71f1592c6eaeb9119abc6e3756e525 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 25 Oct 2019 17:42:23 +0200 Subject: vi: placate "warning: shifting a negative signed value is undefined" Signed-off-by: Denys Vlasenko --- editors/vi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/vi.c') diff --git a/editors/vi.c b/editors/vi.c index f8fab7028..51dfc1209 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -3490,7 +3490,7 @@ static void do_cmd(int c) } while (--cmdcnt > 0); break; case '{': // {- move backward paragraph - q = char_search(dot, "\n\n", (BACK << 1) | FULL); + q = char_search(dot, "\n\n", ((unsigned)BACK << 1) | FULL); if (q != NULL) { // found blank line dot = next_line(q); // move to next blank line } -- cgit v1.2.3