mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
sd-resolve: use UINT64_C() macros where appropriate
This commit is contained in:
parent
a7f6e7e847
commit
0645ce61a0
@ -44,9 +44,9 @@ typedef int (*sd_resolve_getaddrinfo_handler_t)(sd_resolve_query *q, int ret, co
|
||||
typedef int (*sd_resolve_getnameinfo_handler_t)(sd_resolve_query *q, int ret, const char *host, const char *serv, void *userdata);
|
||||
|
||||
enum {
|
||||
SD_RESOLVE_GET_HOST = 1ULL,
|
||||
SD_RESOLVE_GET_SERVICE = 2ULL,
|
||||
SD_RESOLVE_GET_BOTH = 3ULL
|
||||
SD_RESOLVE_GET_HOST = UINT64_C(1),
|
||||
SD_RESOLVE_GET_SERVICE = UINT64_C(2),
|
||||
SD_RESOLVE_GET_BOTH = UINT64_C(3),
|
||||
};
|
||||
|
||||
int sd_resolve_default(sd_resolve **ret);
|
||||
|
Loading…
x
Reference in New Issue
Block a user