summaryrefslogtreecommitdiff
path: root/src/object.c
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2011-09-07 12:02:59 -0700
committerBryan Ischo <bryan@ischo.com>2011-09-07 12:02:59 -0700
commit18ac97576a75e36c383dc70a0a2e666a17033ebd (patch)
treec0af9ab033d7509b13d09530669ed7c1a6960adb /src/object.c
parent0c07f31673b4f5c2eb08927a13b395260b36632e (diff)
downloadceph-libs3-18ac97576a75e36c383dc70a0a2e666a17033ebd.tar.gz
Fixed compiler errors with new, more stringent gcc compiler.
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/object.c b/src/object.c
index 4c8fd1c..9f1d33b 100644
--- a/src/object.c
+++ b/src/object.c
@@ -115,6 +115,9 @@ static S3Status copyObjectXmlCallback(const char *elementPath,
}
}
+ /* Avoid compiler error about variable set but not used */
+ (void) fit;
+
return S3StatusOK;
}