diff options
author | pommicket <pommicket@gmail.com> | 2022-12-29 17:33:29 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-29 17:33:29 -0500 |
commit | 5f7af06a9085835a3d1ad3a51374c245859d7d97 (patch) | |
tree | f8ea4ad4d809334131b479ff8b9c0bd125c45f29 /autocomplete.c | |
parent | e4aac4859511cb22ed84946eb5510cd7fa14e147 (diff) |
fix GCC warnings
Diffstat (limited to 'autocomplete.c')
-rw-r--r-- | autocomplete.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autocomplete.c b/autocomplete.c index 1d03c75..f1c3c13 100644 --- a/autocomplete.c +++ b/autocomplete.c @@ -332,6 +332,8 @@ static char symbol_kind_icon(SymbolKind k) { case SYMBOL_OTHER: return ' '; } + assert(0); + return ' '; } static void autocomplete_frame(Ted *ted) { |