aboutsummaryrefslogtreecommitdiff
path: root/modules/computer/boots.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-05-24 10:20:25 +0200
committerhwspeedy <ns@bigbear.dk>2024-05-24 10:20:25 +0200
commita8ccc2aa89c78108566c67b9e853797ea451f9c8 (patch)
tree9499a58b04a6baf1ab4a0741f7a31d3ddbc0fbc8 /modules/computer/boots.c
parent25c366a8074af72c0811a960b947302bed036669 (diff)
FIX GCC Warnings, added more checking to gcc flags
Diffstat (limited to 'modules/computer/boots.c')
-rw-r--r--modules/computer/boots.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer/boots.c b/modules/computer/boots.c
index 52c122e4..40827649 100644
--- a/modules/computer/boots.c
+++ b/modules/computer/boots.c
@@ -41,7 +41,7 @@ scan_boots_real(void)
&out, &err, NULL, NULL);
if (spawned && out != NULL) {
p = out;
- while(next_nl = strchr(p, '\n')) {
+ while((next_nl = strchr(p, '\n'))) {
strend(p, '\n');
if (strstr(p, "system boot")) {
s = p;