We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54ed29 commit a6dd9e4Copy full SHA for a6dd9e4
src/esp32.cpp
@@ -11,6 +11,7 @@
11
#include <stdlib.h>
12
#include <string.h>
13
#include <stdint.h>
14
+#include <unistd.h>
15
#include <time.h>
16
#include <sqlite3.h>
17
#include <Arduino.h>
@@ -509,7 +510,7 @@ int esp32_Sync(sqlite3_file *id, int flags)
509
510
511
int rc = fflush( file->fd );
512
fsync(fileno(file->fd));
- dbg_printf("esp32_Sync: %d\n", rc);
513
+ dbg_printf("esp32_Sync( %s: ): %d \n",file->name, rc);
514
515
return rc ? SQLITE_IOERR_FSYNC : SQLITE_OK;
516
}
0 commit comments