From: David Zafman Date: Thu, 27 Aug 2015 23:21:50 +0000 (-0700) Subject: cls: Fix successful return found by compiler warning X-Git-Tag: v9.1.0~272^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F5690%2Fhead;p=ceph.git cls: Fix successful return found by compiler warning Signed-off-by: David Zafman --- diff --git a/src/cls/hello/cls_hello.cc b/src/cls/hello/cls_hello.cc index d1adbd4a4cf7..3bc78647366e 100644 --- a/src/cls/hello/cls_hello.cc +++ b/src/cls/hello/cls_hello.cc @@ -268,6 +268,7 @@ public: } catch (buffer::error &e) { return -EINVAL; } + return 0; } virtual ~PGLSHelloFilter() {}