From: Sage Weil Date: Wed, 17 Oct 2012 00:27:28 +0000 (-0700) Subject: radosgw: fix compile warning X-Git-Tag: v0.54~34 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6f74e6b36aa0a9deb9019e10b042bb4886a05bf3;p=ceph.git radosgw: fix compile warning Signed-off-by: Sage Weil --- diff --git a/src/rgw/rgw_op.h b/src/rgw/rgw_op.h index f99a38b5c08..eb71c68c55a 100644 --- a/src/rgw/rgw_op.h +++ b/src/rgw/rgw_op.h @@ -32,7 +32,7 @@ protected: RGWHandler *dialect_handler; RGWRados *store; public: - RGWOp() : s(NULL), store(NULL), dialect_handler(NULL) {} + RGWOp() : s(NULL), dialect_handler(NULL), store(NULL) {} virtual ~RGWOp() {} virtual void init(RGWRados *store, struct req_state *s, RGWHandler *dialect_handler) {