Skip to content

Commit

Permalink
Avoid a pointer type mismatch warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-cellier-aka-nice committed Nov 19, 2016
1 parent a55805f commit 9808b3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platforms/unix/vm/sqUnixSpurMemory.c
Expand Up @@ -90,7 +90,8 @@ usqInt
sqAllocateMemory(usqInt minHeapSize, usqInt desiredHeapSize)
{
char *hint, *address, *alloc;
unsigned long alignment, allocBytes;
unsigned long alignment;
sqInt allocBytes;

if (pageSize) {
fprintf(stderr, "sqAllocateMemory: already called\n");
Expand Down

0 comments on commit 9808b3f

Please sign in to comment.