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
f587a43e6fee5458e3376d5a8441d5fe3f6e1dc5...f3d187230cf07ac4251d65c5afff999d8ff61268
Commits (1)
Resolve SyntaxError: missing ) after condition
· f3d18723
Rob Swindell
authored
Feb 11, 2022
As seen logging on to WLARB ("too")
f3d18723
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
exec/pickfont.js
exec/pickfont.js
+1
-1
No files found.
exec/pickfont.js
View file @
f3d18723
...
...
@@ -76,7 +76,7 @@ function pickfont()
var
slot
=
0
;
if
(
argc
>
0
)
{
slot
=
parseInt
(
argv
[
0
]);
if
(
isNaN
(
slot
)
if
(
isNaN
(
slot
)
)
slot
=
0
;
}
...
...