aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/dropbox
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-13 21:26:47 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit6ad983bb7220eed2f635163a7fcfdac811b80ca0 (patch)
treea69cbf5b4fc7aaba6ec832fc1528bfc297c66073 /backends/cloud/dropbox
parent1b89e25580c186fc2cc1821acee942e23fea3682 (diff)
downloadscummvm-rg350-6ad983bb7220eed2f635163a7fcfdac811b80ca0.tar.gz
scummvm-rg350-6ad983bb7220eed2f635163a7fcfdac811b80ca0.tar.bz2
scummvm-rg350-6ad983bb7220eed2f635163a7fcfdac811b80ca0.zip
CLOUD: Fix GCC static cloudThread compile error
It's not static anymore.
Diffstat (limited to 'backends/cloud/dropbox')
-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;