CLOUD: Fix GCC static cloudThread compile error

It's not static anymore.
This commit is contained in:
Alexander Tkachev 2016-05-13 21:26:47 +06:00
parent 1b89e25580
commit 6ad983bb72
3 changed files with 4 additions and 4 deletions

View file

@ -26,7 +26,7 @@
namespace Cloud {
static void cloudThread(void *thread) {
void cloudThread(void *thread) {
Storage *cloudThread = (Storage *)thread;
cloudThread->handler();
}