ssld/ssld.c: misc cleanup for compiler warning

ssld.c:1251:14: warning: signed shift result (0x80000000) sets the sign
                bit of the shift expression's type ('int') and becomes
                negative [-Wshift-sign-overflow]
This commit is contained in:
Aaron Jones 2017-07-31 01:21:58 +00:00
parent 846629b388
commit 9519919ff5
No known key found for this signature in database
GPG key ID: 8AF0737488AB3012

View file

@ -1248,7 +1248,7 @@ main(int argc, char **argv)
/* this is really useless... */
send_i_am_useless(mod_ctl);
/* sleep until the ircd kills us */
rb_sleep(2 << 30, 0);
rb_sleep(1 << 30, 0);
exit(1);
}