Skip to content
Snippets Groups Projects
Commit 16b81676 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

typo

Rev: src/fsort.c:1.7
parent 43995156
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ void fsort(void *base,
#ifdef HANDLES_UNALIGNED_MEMORY_ACCESS
switch(elmSize)
#else
switch( (((unsigned long)memory) % elmSize) ? size : 0 )
switch( (((unsigned long)base) % elmSize) ? size : 0 )
#endif
{
case 1: fsort_1(( B1_T *)base,(elms-1)+( B1_T *)base); break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment