From b1725908298666e5d550f545cd607ef06394797b Mon Sep 17 00:00:00 2001 From: Scoopta Date: Wed, 11 Mar 2020 17:44:08 -0700 Subject: [PATCH] Renamed the locations enum to location --- src/wofi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wofi.c b/src/wofi.c index 65421f1..5e520a6 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -24,7 +24,7 @@ enum matching_mode { MATCHING_MODE_FUZZY }; -enum locations { +enum location { LOCATION_CENTER, LOCATION_TOP_LEFT, LOCATION_TOP, @@ -62,7 +62,7 @@ static bool insensitive; static bool parse_search; static GtkAlign content_halign; static struct map* config; -static enum locations location; +static enum location location; static bool no_actions; static uint64_t columns; static bool user_moved = false;