diff options
-rw-r--r-- | src/mds-server/receiving.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-server/receiving.c b/src/mds-server/receiving.c index 016c04e..127540b 100644 --- a/src/mds-server/receiving.c +++ b/src/mds-server/receiving.c @@ -263,7 +263,7 @@ int message_received(client_t* client) else if (strequals(h, "Modifying: yes")) modifying = 1; else if (strequals(h, "Stop: yes")) stop = 1; else if (startswith(h, "Message ID: ")) message_id = strstr(h, ": ") + 2; - else if (startswith(h, "Priority: ")) priority = atoll(strstr(h, ": ") + 2); + else if (startswith(h, "Priority: ")) priority = (int64_t)atoll(strstr(h, ": ") + 2); else if (startswith(h, "Modify ID: ")) modify_id = (uint64_t)atoll(strstr(h, ": ") + 2); } |