Minor coding style fixes

This commit is contained in:
Ian Barwick
2020-09-01 13:35:13 +09:00
parent 466590af28
commit 13e7c679cd
3 changed files with 8 additions and 4 deletions

View File

@@ -2834,7 +2834,7 @@ do_node_rejoin(void)
struct stat statbuf;
PQExpBufferData slotdir_ent_path;
if(strcmp(slotdir_ent->d_name, ".") == 0 || strcmp(slotdir_ent->d_name, "..") == 0)
if (strcmp(slotdir_ent->d_name, ".") == 0 || strcmp(slotdir_ent->d_name, "..") == 0)
continue;
initPQExpBuffer(&slotdir_ent_path);