mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
align coding style with style(9) to avoid misunderstandings
This commit is contained in:
parent
26286b8acf
commit
35f2d3b6b1
1 changed files with 2 additions and 1 deletions
|
|
@ -187,7 +187,8 @@ padvance(char **path, char *name)
|
|||
if (*path == NULL)
|
||||
return NULL;
|
||||
start = *path;
|
||||
for (p = start ; *p && *p != ':' && *p != '%' ; p++);
|
||||
for (p = start; *p && *p != ':' && *p != '%'; p++)
|
||||
; /* nothing */
|
||||
len = p - start + strlen(name) + 2; /* "2" is for '/' and '\0' */
|
||||
while (stackblocksize() < len)
|
||||
growstackblock();
|
||||
|
|
|
|||
Loading…
Reference in a new issue