aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/dropbox/finalcountdownrequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/cloud/dropbox/finalcountdownrequest.h')
-rw-r--r--backends/cloud/dropbox/finalcountdownrequest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cloud/dropbox/finalcountdownrequest.h b/backends/cloud/dropbox/finalcountdownrequest.h
index 34e8a807f9..5ef942180c 100644
--- a/backends/cloud/dropbox/finalcountdownrequest.h
+++ b/backends/cloud/dropbox/finalcountdownrequest.h
@@ -35,7 +35,7 @@ public:
FinalCountdownRequest(Callback cb) : Request(cb), _times(5) {};
virtual bool handle() {
- if(--_times == 0) {
+ if (--_times == 0) {
warning("It's the final countdown!");
_callback(0); //meh, don't have anything for you, my caller
return true;