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
Uses a &[] pointer loop instead of + pointer loop
master
Roberto E. Vargas Caballero
9 years ago
parent
736685d641
commit
b17aa18f7c
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
@ -2906,7 +2906,7 @@ xloadcols(void) {
Color
*
cp
;
if
(
loaded
)
{
for
(
cp
=
dc
.
col
;
cp
<
dc
.
col
+
LEN
(
dc
.
col
)
;
+
+
cp
)
for
(
cp
=
dc
.
col
;
cp
<
&
dc
.
col
[
LEN
(
dc
.
col
)
]
;
+
+
cp
)
XftColorFree
(
xw
.
dpy
,
xw
.
vis
,
xw
.
cmap
,
cp
)
;
}
Write
Preview
Loading…
Cancel
Save