Some more linter warnings

This commit is contained in:
NHOrus 2017-06-28 20:40:46 +03:00 committed by Eric S. Raymond
parent b729853e7a
commit aca6d79087
4 changed files with 5 additions and 5 deletions

2
misc.c
View file

@ -535,7 +535,7 @@ long atdwrf(long where)
long setbit(long bit)
/* Returns 2**bit for use in constructing bit-masks. */
{
return (1 << bit);
return (1L << bit);
}
bool tstbit(long mask, int bit)