From 99b2c0b04a20cc1f374b0b7483b3113aa97e996d Mon Sep 17 00:00:00 2001 From: Ailin Nemui Date: Thu, 18 Jul 2019 10:29:30 +0200 Subject: [PATCH] fix small overflow --- src/fe-common/core/command-history.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/command-history.h b/src/fe-common/core/command-history.h index 04922d2d..f4042640 100644 --- a/src/fe-common/core/command-history.h +++ b/src/fe-common/core/command-history.h @@ -10,7 +10,7 @@ typedef struct { int lines; int refcount; - int redo:1; + unsigned int redo:1; } HISTORY_REC; typedef struct {