Skip to content

Commit

Permalink
Correção na inicialização do vertice
Browse files Browse the repository at this point in the history
  • Loading branch information
hfcipriano committed Nov 6, 2016
1 parent 69eaf1b commit c74f408
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scr/tad/vertice/vertice.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ int verticeEquals(vertice*, vertice*);
vertice *newVertice(int valor){
vertice *v = (vertice*)malloc(sizeof(vertice));
v->valor = valor;
v->verticeEquals = verticeEquals;
v->bool_marcardo = bool_FALSE;

return v;
Expand Down

0 comments on commit c74f408

Please sign in to comment.