Compare commits

..

No commits in common. "31b4b5c2c7eed6feb32810a0444949bcf1fe2867" and "16fa87e08131694e3095e3bcd6bacead70396103" have entirely different histories.

3 changed files with 2 additions and 2 deletions

BIN
doble.exe

Binary file not shown.

View File

@ -1,5 +1,4 @@
Player1;19887
Player1;19843
Lena;19811
Lena;19702
Player1;19578
@ -8,3 +7,4 @@ Lena;9980
Lena;9978
Lena;9978
Lena;9976
Lena;9975

View File

@ -4,7 +4,7 @@
// Push Daten auf den Stack legen.
StackNode *push(StackNode *stack, void *data)
{
StackNode *node = malloc(sizeof(StackNode));
StackNode *node = (StackNode *)malloc(sizeof(StackNode));
if(node == NULL)
return stack; // allocation failed -> return unchanged stack