Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
btpd
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Print the result of, and not the address of, getpid().
master
Richard Nyberg
hace 16 años
padre
7ba163fe5a
commit
33f309c204
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
btpd/main.c
+ 1
- 1
btpd/main.c
Ver fichero
@@ -19,7 +19,7 @@ writepid(int pidfd)
{
int nw;
char pidtxt[100];
nw = snprintf(pidtxt, sizeof(pidtxt), "%ld", (long)getpid);
nw = snprintf(pidtxt, sizeof(pidtxt), "%ld", (long)getpid
()
);
ftruncate(pidfd, 0);
write(pidfd, pidtxt, nw);
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar