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 issue causing segfault on ARM systems
master
Aidan
5 years ago
parent
b685f2805f
commit
09a00ab345
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
dwmblocks.c
+ 4
- 0
dwmblocks.c
View File
@ -54,7 +54,11 @@ void getcmd(const Block *block, char *output)
char
c
;
int
i
=
strlen
(
block
-
>
icon
)
;
while
(
(
c
=
fgetc
(
cmdf
)
)
!
=
EOF
)
{
output
[
i
+
+
]
=
c
;
if
(
c
=
=
'
\n
'
)
break
;
}
if
(
delim
!
=
'
\0
'
&
&
-
-
i
)
output
[
i
+
+
]
=
delim
;
output
[
i
+
+
]
=
'
\0
'
;
Write
Preview
Loading…
Cancel
Save