summaryrefslogtreecommitdiff
path: root/obexd/client
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2013-10-04 11:05:35 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-10-04 14:10:33 +0300
commit9cd1d095e2609e8d2cc98c1b314f435f6563397b (patch)
treeba241bb7457e00a62956ceb05ed873544c799a03 /obexd/client
parent757e10de01a4a35ac7bbebb0971c67812b98004b (diff)
downloadbluez-9cd1d095e2609e8d2cc98c1b314f435f6563397b.tar.gz
client/transfer: Return "error" for unknown status in status2str
This can happen only if there is a bug in obexd code. This fix following build error: CC obexd/client/obexd-transfer.o obexd/client/transfer.c: In function ‘status2str’: obexd/client/transfer.c:277:1: error: control reaches end of non-void function [-Werror=return-type]
Diffstat (limited to 'obexd/client')
-rw-r--r--obexd/client/transfer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/obexd/client/transfer.c b/obexd/client/transfer.c
index 99a17e9f7..5a8d4f249 100644
--- a/obexd/client/transfer.c
+++ b/obexd/client/transfer.c
@@ -272,6 +272,7 @@ static const char *status2str(uint8_t status)
case TRANSFER_STATUS_COMPLETE:
return "complete";
case TRANSFER_STATUS_ERROR:
+ default:
return "error";
}
}