Explorar el Código

pid_t is long on some systems. solaris is one.

master
Richard Nyberg hace 16 años
padre
commit
8a150a2fb3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      btpd/main.c

+ 1
- 1
btpd/main.c Ver fichero

@@ -9,7 +9,7 @@ static void
writepid(int pidfd)
{
FILE *fp = fdopen(dup(pidfd), "w");
fprintf(fp, "%d", getpid());
fprintf(fp, "%ld", (long)getpid());
fclose(fp);
}



Cargando…
Cancelar
Guardar