diff options
| author | C. Morgan Hamill <me@cmhamill.org> | 2015-03-24 19:44:37 +0100 |
|---|---|---|
| committer | C. Morgan Hamill <me@cmhamill.org> | 2015-03-24 19:44:37 +0100 |
| commit | a644db096a6f783a75c34eaa3ad4bf6a57615e62 (patch) | |
| tree | 8d07130bb8a3b70765e1a7270091aa0feb0d6711 | |
| parent | 99e3507507e114fb4d1d27de6a7dcf1f8caaa73d (diff) | |
| download | mail-a644db096a6f783a75c34eaa3ad4bf6a57615e62.tar.gz | |
Fix errors in FFI function signatures.
| -rw-r--r-- | src/ffi.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -233,7 +233,7 @@ extern { query_string: *const c_char, ) -> *mut notmuch_query_t; - pub fn notmuch_query_get_string( + pub fn notmuch_query_get_query_string( query: *mut notmuch_query_t, ) -> *const c_char; @@ -452,6 +452,7 @@ extern { pub fn notmuch_directory_set_mtime( directory: *mut notmuch_directory_t, + mtime: time_t, ) -> notmuch_status_t; pub fn notmuch_directory_get_mtime( |
