mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-18 17:25:57 +01:00
lib: Add two missing static qualifiers
The debian packaging is nice enough to notice when we accidentally leak private symbols to the public interface.
This commit is contained in:
parent
2a318d3714
commit
fe8eeaf4a5
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ struct maildir_flag_tag {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* ASCII ordered table of Maildir flags and associated tags */
|
/* ASCII ordered table of Maildir flags and associated tags */
|
||||||
struct maildir_flag_tag flag2tag[] = {
|
static struct maildir_flag_tag flag2tag[] = {
|
||||||
{ 'D', "draft", false},
|
{ 'D', "draft", false},
|
||||||
{ 'F', "flagged", false},
|
{ 'F', "flagged", false},
|
||||||
{ 'P', "passed", false},
|
{ 'P', "passed", false},
|
||||||
|
@ -459,7 +459,7 @@ _notmuch_message_add_filename (notmuch_message_t *message,
|
||||||
* This change will not be reflected in the database until the next
|
* This change will not be reflected in the database until the next
|
||||||
* call to _notmuch_message_sync.
|
* call to _notmuch_message_sync.
|
||||||
*/
|
*/
|
||||||
notmuch_status_t
|
static notmuch_status_t
|
||||||
_notmuch_message_rename (notmuch_message_t *message,
|
_notmuch_message_rename (notmuch_message_t *message,
|
||||||
const char *old_filename,
|
const char *old_filename,
|
||||||
const char *new_filename)
|
const char *new_filename)
|
||||||
|
|
Loading…
Reference in a new issue