Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
b749292d8b8e0b4941814d0635c67e2893d8e73a...20a50d4bb476926b933ae84e9747b012019da0fe
Commits (1)
Make it const everywhere.
· 20a50d4b
Deucе
authored
Feb 27, 2022
20a50d4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/conio/ciolib.c
src/conio/ciolib.c
+1
-1
No files found.
src/conio/ciolib.c
View file @
20a50d4b
...
@@ -81,7 +81,7 @@ CIOLIBEXPORT int directvideo=0;
...
@@ -81,7 +81,7 @@ CIOLIBEXPORT int directvideo=0;
CIOLIBEXPORT
int
hold_update
=
0
;
CIOLIBEXPORT
int
hold_update
=
0
;
CIOLIBEXPORT
int
puttext_can_move
=
0
;
CIOLIBEXPORT
int
puttext_can_move
=
0
;
CIOLIBEXPORT
int
ciolib_reaper
=
TRUE
;
CIOLIBEXPORT
int
ciolib_reaper
=
TRUE
;
CIOLIBEXPORT
char
*
ciolib_appname
=
NULL
;
CIOLIBEXPORT
const
char
*
ciolib_appname
=
NULL
;
CIOLIBEXPORT
int
ciolib_initial_window_height
=
-
1
;
CIOLIBEXPORT
int
ciolib_initial_window_height
=
-
1
;
CIOLIBEXPORT
int
ciolib_initial_window_width
=
-
1
;
CIOLIBEXPORT
int
ciolib_initial_window_width
=
-
1
;
static
int
initialized
=
0
;
static
int
initialized
=
0
;
...
...