fix: Remove extra comma from NotAvailable error

This commit is contained in:
Pekka Pessi 2010-08-19 19:20:26 +03:00 committed by Marcel Holtmann
parent 89e5a75fc1
commit 4cd9a52f4c
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}