]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/hibernate-resume/hibernate-resume.c
hibernate-resume: EINVAL -> ENOTBLK where appropriate
[thirdparty/systemd.git] / src / hibernate-resume / hibernate-resume.c
index 519aefe29faab8e74fc87bb64dbdb0d5b792d8b2..27411faa7f44a0f24b0866f8c747850eec8335fa 100644 (file)
@@ -67,7 +67,7 @@ static int run(int argc, char *argv[]) {
                 return log_error_errno(errno, "Failed to stat resume device '%s': %m", arg_info.device);
 
         if (!S_ISBLK(st.st_mode))
-                return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
+                return log_error_errno(SYNTHETIC_ERRNO(ENOTBLK),
                                        "Resume device '%s' is not a block device.", arg_info.device);
 
         /* The write shall not return if a resume takes place. */