Procházet zdrojové kódy

Fix warning on no return value from non-void function.

There was a warning at the end of addrinfo_td because it returns
a "void *" but had no return statement.  The fix was call pthread_exit().
master
Marq Schneider před 14 roky
rodič
revize
2810f88532
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. +1
    -0
      btpd/addrinfo.c

+ 1
- 0
btpd/addrinfo.c Zobrazit soubor

@@ -76,6 +76,7 @@ addrinfo_td(void *arg)
td_post(addrinfo_td_cb, ctx);
td_post_end();
}
pthread_exit(NULL);
}

static void


Načítá se…
Zrušit
Uložit