Reduce stack usage for boolean flags

This commit is contained in:
Julien BLACHE 2010-09-21 22:30:16 +02:00
parent 50a9a3690f
commit a3d549bd37

View File

@ -2891,10 +2891,10 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha
char *at_name; char *at_name;
char *password; char *password;
uint64_t id; uint64_t id;
int has_password; char has_password;
int encrypt; char encrypt;
int auth_quirk_itunes; char auth_quirk_itunes;
int last_active; char last_active;
int ret; int ret;
ret = safe_hextou64(name, &id); ret = safe_hextou64(name, &id);