Skip to content
Extraits de code Groupes Projets
Valider d1df7bc5 rédigé par Eliah Rebstock's avatar Eliah Rebstock
Parcourir les fichiers

Clean node

parent 39bee6c8
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -282,7 +282,7 @@ void dumpnodes() ...@@ -282,7 +282,7 @@ void dumpnodes()
TRY(try8); TRY(try8);
while (hw != NULL) while (hw != NULL)
{ {
fprintf(tracefile, "%12ld X1:%4d X2:%4d Y:%4d N:%ld C:%s\n", fprintf(tracefile, "%12ld X1:%4d X2:%4d Y:%4d N:%ld C:%d\n",
(long)hw, hw->x1, hw->x2, hw->y, (long)hw->node, (long)hw, hw->x1, hw->x2, hw->y, (long)hw->node,
colorname(STR3, hw->wcolr)); colorname(STR3, hw->wcolr));
hw = hw->next; hw = hw->next;
...@@ -298,7 +298,7 @@ void dumpnodes() ...@@ -298,7 +298,7 @@ void dumpnodes()
TRY(try9); TRY(try9);
while (vw != NULL) while (vw != NULL)
{ {
fprintf(tracefile, "%12ld X:%4d Y1:%4d Y2:%4d N:%ld C:%s\n", fprintf(tracefile, "%12ld X:%4d Y1:%4d Y2:%4d N:%ld C:%d\n",
(long)vw, vw->x, vw->y1, vw->y2, (long)vw->node, (long)vw, vw->x, vw->y1, vw->y2, (long)vw->node,
colorname(STR3, vw->wcolr)); colorname(STR3, vw->wcolr));
vw = vw->next; vw = vw->next;
......
...@@ -42,7 +42,7 @@ char *tilde_expand(char* s) ...@@ -42,7 +42,7 @@ char *tilde_expand(char* s)
{ {
char *name; char *name;
char *ret = NULL; char *ret = NULL;
int len = 0; size_t len = 0;
struct passwd *pw; struct passwd *pw;
if (*s == '~') { if (*s == '~') {
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter