From a6454e42919a654b205b91e6dafa21f47ddb650d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 10 Jun 2020 14:25:59 +0400 Subject: [PATCH] dbus-protocol.h: fix DBUS_ERROR_SPAWN_NO_MEMORY comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Although this error seems to be unused (DBUS_ERROR_NO_MEMORY is used instead), let's correct the comment. Signed-off-by: Marc-André Lureau --- dbus/dbus-protocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbus/dbus-protocol.h b/dbus/dbus-protocol.h index 61f6212d..b3db8c61 100644 --- a/dbus/dbus-protocol.h +++ b/dbus/dbus-protocol.h @@ -438,7 +438,7 @@ extern "C" { #define DBUS_ERROR_SPAWN_PERMISSIONS_INVALID "org.freedesktop.DBus.Error.Spawn.PermissionsInvalid" /** Service file invalid (Name, User or Exec missing). */ #define DBUS_ERROR_SPAWN_FILE_INVALID "org.freedesktop.DBus.Error.Spawn.FileInvalid" -/** Tried to get a UNIX process ID and it wasn't available. */ +/** There was not enough memory to complete the operation. */ #define DBUS_ERROR_SPAWN_NO_MEMORY "org.freedesktop.DBus.Error.Spawn.NoMemory" /** Tried to get a UNIX process ID and it wasn't available. */ #define DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN "org.freedesktop.DBus.Error.UnixProcessIdUnknown"