mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 04:50:06 +00:00
minor refactoring
- removed unused alloca.h header in lsocket.c - fixed type cast warning in sterm.c
This commit is contained in:
parent
7a000c1caa
commit
29129923b3
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -26,7 +26,8 @@
|
|||||||
"limits": "c",
|
"limits": "c",
|
||||||
"*.in": "cpp",
|
"*.in": "cpp",
|
||||||
"lerror.h": "c",
|
"lerror.h": "c",
|
||||||
"stdbool.h": "c"
|
"stdbool.h": "c",
|
||||||
|
"alloca.h": "c"
|
||||||
},
|
},
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"cnc's",
|
"cnc's",
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#include <alloca.h>
|
|
||||||
|
|
||||||
#include "lerror.h"
|
#include "lerror.h"
|
||||||
#include "lmem.h"
|
#include "lmem.h"
|
||||||
#include "lpolllist.h"
|
#include "lpolllist.h"
|
||||||
|
@ -81,7 +81,7 @@ char shellT_getch(void) {
|
|||||||
int r;
|
int r;
|
||||||
char in;
|
char in;
|
||||||
|
|
||||||
if ((r = shellT_readRawInput(&in, 1)) > 0) {
|
if ((r = shellT_readRawInput((uint8_t*)&in, 1)) > 0) {
|
||||||
return in;
|
return in;
|
||||||
} else {
|
} else {
|
||||||
return r;
|
return r;
|
||||||
|
Loading…
Reference in New Issue
Block a user