From e79d4932ea413c277425ff92c456741e0730c3d6 Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Wed, 21 Mar 2018 12:21:37 +0100 Subject: More robust preprocessor switches Replace #ifdef with #if defined() and #elif with #elif defined() as it should only test if it is defined or not. --- components/battery.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'components/battery.c') diff --git a/components/battery.c b/components/battery.c index 4314e81..aef5b5f 100644 --- a/components/battery.c +++ b/components/battery.c @@ -1,10 +1,10 @@ /* See LICENSE file for copyright and license details. */ #include #include -#ifdef __linux__ +#if defined(__linux__) #include #include -#elif __OpenBSD__ +#elif defined(__OpenBSD__) #include #include #include @@ -16,14 +16,14 @@ const char * battery_perc(const char *bat) { -#ifdef __linux__ +#if defined(__linux__) int perc; char path[PATH_MAX]; snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/capacity"); return (pscanf(path, "%i", &perc) == 1) ? bprintf("%d", perc) : NULL; -#elif __OpenBSD__ +#elif defined(__OpenBSD__) struct apm_power_info apm_info; int fd; @@ -44,7 +44,7 @@ battery_perc(const char *bat) #endif } -#ifdef __linux__ +#if defined(__linux__) const char * battery_power(const char *bat) { -- cgit v1.2.3