Sfoglia il codice sorgente

make check-spaces fix

Cristian Toader 11 anni fa
parent
commit
c584537a03
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/common/sandbox.c

+ 2 - 2
src/common/sandbox.c

@@ -918,7 +918,7 @@ sandbox_getaddrinfo(const char *name, struct addrinfo **res)
   *res = NULL;
 
   for (el = sb_addr_info; el; el = el->next) {
-    if(!strcmp(el->name, name)) {
+    if (!strcmp(el->name, name)) {
       *res = (struct addrinfo *)malloc(sizeof(struct addrinfo));
       if (!res) {
         return -2;
@@ -941,7 +941,7 @@ sandbox_add_addrinfo(const char* name)
   sb_addr_info_t *el = NULL;
 
   el = (sb_addr_info_t*) malloc(sizeof(sb_addr_info_t));
-  if(!el) {
+  if (!el) {
     log_err(LD_BUG,"(Sandbox) failed to allocate addr info!");
     ret = -2;
     goto out;