Skip to content
This repository has been archived by the owner on Dec 27, 2020. It is now read-only.

Commit

Permalink
Refixed, forgot to fix it in Add-on API's file.
Browse files Browse the repository at this point in the history
  • Loading branch information
RadWolfie committed Sep 20, 2014
1 parent df95d3d commit caf73fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
while(scan) {
d_stack* newStack = (d_stack*)util::AllocMem(sizeof(d_stack));
newStack->d_type = (T*)util::AllocMem(sizeof(T));
*newStack->d_type = *clone->d_type;
*newStack->d_type = *scan->d_type;
newStack->next_d_type = NULL;
clone->next_d_type = newStack;
clone = newStack;
Expand Down

0 comments on commit caf73fe

Please sign in to comment.