From 601ad61e7ddd5a79a0c650ff617b617470fafe07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Wed, 25 Nov 2020 12:46:00 +0100 Subject: Unify naming of first argument of Platform_getBattery Use percent throughout --- darwin/Platform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'darwin') diff --git a/darwin/Platform.c b/darwin/Platform.c index 09fec45a..e24b67bc 100644 --- a/darwin/Platform.c +++ b/darwin/Platform.c @@ -355,10 +355,10 @@ bool Platform_getNetworkIO(unsigned long int* bytesReceived, return false; } -void Platform_getBattery(double* level, ACPresence* isOnAC) { +void Platform_getBattery(double* percent, ACPresence* isOnAC) { CFTypeRef power_sources = IOPSCopyPowerSourcesInfo(); - *level = NAN; + *percent = NAN; *isOnAC = AC_ERROR; if (NULL == power_sources) @@ -410,7 +410,7 @@ void Platform_getBattery(double* level, ACPresence* isOnAC) { CFNumberGetValue(CFDictionaryGetValue(battery, CFSTR(kIOPSMaxCapacityKey)), kCFNumberDoubleType, &max); - *level = (current * 100.0) / max; + *percent = (current * 100.0) / max; CFRelease(battery); } -- cgit v1.2.3