diff options
Diffstat (limited to 'modules/computer/ubuntu_flavors.c')
-rw-r--r-- | modules/computer/ubuntu_flavors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer/ubuntu_flavors.c b/modules/computer/ubuntu_flavors.c index ac67d665..c88dc5ff 100644 --- a/modules/computer/ubuntu_flavors.c +++ b/modules/computer/ubuntu_flavors.c @@ -66,7 +66,7 @@ GSList *ubuntu_flavors_scan(void) { &out, &err, &exit_status, NULL); if (spawned) { p = out; - while(next_nl = strchr(p, '\n')) { + while((next_nl = strchr(p, '\n'))) { strend(p, '\n'); int mc = 0; char pkg[32] = ""; |