This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
dwmblocks
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fixed for loop in getstatus()
master
Aidan
6 years ago
parent
980aab697a
commit
ce861dd798
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
dwmblocks.c
+ 1
- 1
dwmblocks.c
View File
@ -95,7 +95,7 @@ void setupsignals()
void
getstatus
(
char
*
str
)
{
int
j
=
0
;
for
(
int
i
=
0
;
i
<
5
;
j
+
=
strlen
(
statusbar
[
i
+
+
]
)
)
for
(
int
i
=
0
;
i
<
LENGTH
(
blocks
)
;
j
+
=
strlen
(
statusbar
[
i
+
+
]
)
)
{
strcpy
(
str
+
j
,
statusbar
[
i
]
)
;
}
Write
Preview
Loading…
Cancel
Save