Skip to content

Commit bf70da4

Browse files
committed
fix: build error on mobile platforms
1 parent d0def5d commit bf70da4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudsync.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2260,8 +2260,6 @@ void cloudsync_payload_decode (sqlite3_context *context, int argc, sqlite3_value
22602260

22612261
// MARK: - Payload load/store -
22622262

2263-
#ifdef CLOUDSYNC_DESKTOP_OS
2264-
22652263
int cloudsync_payload_get (sqlite3_context *context, char **blob, int *blob_size, int *db_version, int *seq, sqlite3_int64 *new_db_version, sqlite3_int64 *new_seq) {
22662264
sqlite3 *db = sqlite3_context_db_handle(context);
22672265

@@ -2288,6 +2286,8 @@ int cloudsync_payload_get (sqlite3_context *context, char **blob, int *blob_size
22882286
return rc;
22892287
}
22902288

2289+
#ifdef CLOUDSYNC_DESKTOP_OS
2290+
22912291
void cloudsync_payload_save (sqlite3_context *context, int argc, sqlite3_value **argv) {
22922292
DEBUG_FUNCTION("cloudsync_payload_save");
22932293

0 commit comments

Comments
 (0)