Describe the bug

we define CLIENT_CLOSE_AFTER_COMMAND (1ULL<<40) but in call() function,we use int :

void call(client *c, int flags) { long long dirty; ustime_t start, duration; int client_old_flags = c->flags;

maybe we need change it as uint64_t

Comment From: oranagra

Thanks for reporting. luckily this doesn't cause any actual bug since this variable is only used to test these flags CLIENT_FORCE_AOF|CLIENT_FORCE_REPL|CLIENT_PREVENT_PROP which are all below 1<<31.

do you wanna make a PR to fix it?