mirror of
https://github.com/sheumann/hush.git
synced 2025-08-07 11:26:53 +00:00
fix accumulated whitespace and indentation damage
This commit is contained in:
@@ -68,7 +68,7 @@ static void utoa_to_buf(unsigned n, char *buf, unsigned buflen)
|
||||
}
|
||||
static void itoa_to_buf(int n, char *buf, unsigned buflen)
|
||||
{
|
||||
if (buflen && n<0) {
|
||||
if (buflen && n < 0) {
|
||||
n = -n;
|
||||
*buf++ = '-';
|
||||
buflen--;
|
||||
|
Reference in New Issue
Block a user