summaryrefslogtreecommitdiffstats
path: root/src/dbus.c
diff options
context:
space:
mode:
authorPekka Pessi <Pekka.Pessi@nokia.com>2010-08-19 19:20:26 +0300
committerMarcel Holtmann <marcel@holtmann.org>2010-08-19 19:30:27 +0200
commit4cd9a52f4cab3da89b9364be6b1dcf8bb953133a (patch)
tree903f0aa81c7a616d43fcb4eaa86ab1dc0da8b7a8 /src/dbus.c
parent89e5a75fc1bd413269e221a1b588d9c0eb77aa8d (diff)
downloadofono-4cd9a52f4cab3da89b9364be6b1dcf8bb953133a.tar.bz2
fix: Remove extra comma from NotAvailable error
Diffstat (limited to 'src/dbus.c')
-rw-r--r--src/dbus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbus.c b/src/dbus.c
index 09114c34..c51f2a94 100644
--- a/src/dbus.c
+++ b/src/dbus.c
@@ -300,7 +300,7 @@ DBusMessage *__ofono_error_not_supported(DBusMessage *msg)
DBusMessage *__ofono_error_not_available(DBusMessage *msg)
{
- return g_dbus_create_error(msg, DBUS_GSM_ERROR_INTERFACE,
+ return g_dbus_create_error(msg, DBUS_GSM_ERROR_INTERFACE
".NotAvailable",
"Operation currently not available");
}