From a33eb4b715b8b1601a8fa234bc4d6b739a4838cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?bj=C3=B6rn=20petersen?= Date: Fri, 3 May 2019 00:32:14 +0200 Subject: [PATCH] fix spaces at the line ends (resulted to 'locations_last_sentFROM' before) (#36) --- src/dc_location.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dc_location.rs b/src/dc_location.rs index 07cfeac76..42dd51c79 100644 --- a/src/dc_location.rs +++ b/src/dc_location.rs @@ -775,8 +775,8 @@ pub unsafe fn dc_job_do_DC_JOB_MAYBE_SEND_LOCATIONS(context: &dc_context_t, _job stmt_chats = dc_sqlite3_prepare( context, &context.sql.clone().read().unwrap(), - b"SELECT id, locations_send_begin, locations_last_sent\ - FROM chats\ + b"SELECT id, locations_send_begin, locations_last_sent \ + FROM chats \ WHERE locations_send_until>?;\x00" as *const u8 as *const libc::c_char, ); sqlite3_bind_int64(stmt_chats, 1i32, now as sqlite3_int64);