Skip to content
Snippets Groups Projects
Commit 9c410324 authored by rswindell's avatar rswindell
Browse files

Address warning:

bbslist.c: In function 'get_emulation_str':
bbslist.c:2105:1: warning: control reaches end of non-void function
parent 85d835b7
Branches
Tags
No related merge requests found
...@@ -2102,6 +2102,7 @@ get_emulation_str(cterm_emulation_t emu) ...@@ -2102,6 +2102,7 @@ get_emulation_str(cterm_emulation_t emu)
case CTERM_EMULATION_ATASCII: case CTERM_EMULATION_ATASCII:
return "ATASCII"; return "ATASCII";
} }
return "none";
} }
void void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment