Skip to content
Snippets Groups Projects
Commit 7215e911 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix some signed/unsigned int comparison warnings from MSVC

parent 35593f66
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -1223,7 +1223,7 @@ void shell_cfg()
char str[128],code[128],done=0;
int j,k;
int i;
uint u;
int u;
static shell_t savshell;
while(1) {
......
......@@ -207,7 +207,7 @@ void chan_cfg()
char str[128],code[128],done=0;
int j,k;
int i;
uint u;
int u;
static chan_t savchan;
while(1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment