Skip to content

Commit 7b49eda

Browse files
committed
fix android log print for new cipher_profile logcat feature
1 parent 70f5b36 commit 7b49eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crypto_impl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ static int sqlcipher_profile_callback(unsigned int trace, void *file, void *stmt
16621662
double elapsed = (*((sqlite3_uint64*)run_time))/1000000.0;
16631663
#ifdef __ANDROID__
16641664
if(f == NULL) {
1665-
__android_log_print(ANDROID_LOG_DEBUG, "sqlcipher", fmt, elapsed, sqlite3_sql((sqlite3_stmt*)stmt);
1665+
__android_log_print(ANDROID_LOG_DEBUG, "sqlcipher", fmt, elapsed, sqlite3_sql((sqlite3_stmt*)stmt));
16661666
}
16671667
#endif
16681668
if(f) fprintf(f, fmt, elapsed, sqlite3_sql((sqlite3_stmt*)stmt));

0 commit comments

Comments
 (0)