chiark / gitweb /
man: clarify that the ExecReload= command should be synchronous
[elogind.git] / src / machine / machined-dbus.c
index 947310542c7eec1f1cf19f9a4c425d7a7d6bd84e..a32d7f5d75240ec6b54907c1041cd6a3d7cd4c4b 100644 (file)
@@ -118,7 +118,7 @@ static int method_get_machine_by_pid(sd_bus *bus, sd_bus_message *message, void
         if (r < 0)
                 return r;
         if (!machine)
-                return sd_bus_error_setf(error, BUS_ERROR_NO_MACHINE_FOR_PID, "PID %lu does not belong to any known machine", (unsigned long) pid);
+                return sd_bus_error_setf(error, BUS_ERROR_NO_MACHINE_FOR_PID, "PID "PID_FMT" does not belong to any known machine", pid);
 
         p = machine_bus_path(machine);
         if (!p)