This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Place memset arguments in the correct order.
master
noname@inventati.org
9 years ago
committed by
Roberto E. Vargas Caballero
parent
5528280fae
commit
ab69ea89b7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
st.c
+ 1
- 1
st.c
View File
@ -1459,7 +1459,7 @@ treset(void) {
term
.
top
=
0
;
term
.
bot
=
term
.
row
-
1
;
term
.
mode
=
MODE_WRAP
;
memset
(
term
.
trantbl
,
sizeof
(
term
.
trantbl
)
,
CS_USA
)
;
memset
(
term
.
trantbl
,
CS_USA
,
sizeof
(
term
.
trantbl
)
)
;
term
.
charset
=
0
;
for
(
i
=
0
;
i
<
2
;
i
+
+
)
{
Write
Preview
Loading…
Cancel
Save