diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-07-25 12:57:45 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-07-25 12:57:45 +0000 |
commit | 8fb78ad3b3acc6cf76c7a1ba5f6062f126d1b7a0 (patch) | |
tree | 0d1e863beb0879ce13d996625698087ddb050d71 /audio | |
parent | a46dd97e351ed0f312601cf8f0297fcbc358318e (diff) |
Fix NotAvailable error return
Diffstat (limited to 'audio')
-rw-r--r-- | audio/error.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/error.c b/audio/error.c index 6bd6e08d..275eb2a7 100644 --- a/audio/error.c +++ b/audio/error.c @@ -93,7 +93,8 @@ DBusHandlerResult err_does_not_exist(DBusConnection *conn, DBusMessage *msg) DBusHandlerResult err_not_available(DBusConnection *conn, DBusMessage *msg) { - return error_reply(conn, msg, ".NotAvailable", "Not available"); + return error_reply(conn, msg, AUDIO_ERROR_INTERFACE ".NotAvailable", + "Not available"); } DBusHandlerResult err_failed(DBusConnection *conn, |