shared/sleep-config: rename misnamed function
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 11 Apr 2018 07:27:32 +0000 (09:27 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 11 Apr 2018 07:27:32 +0000 (09:27 +0200)
src/shared/sleep-config.c

index 1b684b9..26703b3 100644 (file)
@@ -239,7 +239,7 @@ int find_hibernate_location(char **device, char **type, size_t *size, size_t *us
         return -ENOSYS;
 }
 
-static bool enough_memory_for_hibernation(void) {
+static bool enough_swap_for_hibernation(void) {
         _cleanup_free_ char *active = NULL;
         unsigned long long act = 0;
         size_t size = 0, used = 0;
@@ -399,7 +399,7 @@ int can_sleep(const char *verb) {
         if (streq(verb, "suspend"))
                 return true;
 
-        if (!enough_memory_for_hibernation())
+        if (!enough_swap_for_hibernation())
                 return -ENOSPC;
 
         return true;