appletalk: fix checkpatch errors with space required or prohibited
[deliverable/linux.git] / net / appletalk / aarp.c
index d27b86dfb0e92bf467b95f7e488f736cff8db657..d1c55d8dd0a2538eaabe403ceeb26896c00adf66 100644 (file)
@@ -926,7 +926,7 @@ static struct aarp_entry *iter_next(struct aarp_iter_state *iter, loff_t *pos)
        struct aarp_entry *entry;
 
  rescan:
-       while(ct < AARP_HASH_SIZE) {
+       while (ct < AARP_HASH_SIZE) {
                for (entry = table[ct]; entry; entry = entry->next) {
                        if (!pos || ++off == *pos) {
                                iter->table = table;
@@ -995,7 +995,7 @@ static const char *dt2str(unsigned long ticks)
 {
        static char buf[32];
 
-       sprintf(buf, "%ld.%02ld", ticks / HZ, ((ticks % HZ) * 100 ) / HZ);
+       sprintf(buf, "%ld.%02ld", ticks / HZ, ((ticks % HZ) * 100) / HZ);
 
        return buf;
 }
This page took 0.02598 seconds and 5 git commands to generate.