Mercurial > yaffs-ecoscentric-gpl
changeset 181:6d145964bc23
Fix yaffs_qsort linkage
| author | charles <charles> |
|---|---|
| date | Mon, 23 Jul 2007 05:14:08 +0000 |
| parents | 351e11b5b402 |
| children | b6487bb58748 |
| files | yaffs_guts.c |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/yaffs_guts.c +++ b/yaffs_guts.c @@ -12,7 +12,7 @@ */ const char *yaffs_guts_c_version = - "$Id: yaffs_guts.c,v 1.50 2007-07-18 19:40:38 charles Exp $"; + "$Id: yaffs_guts.c,v 1.51 2007-07-23 05:14:08 charles Exp $"; #include "yportenv.h" @@ -6058,7 +6058,7 @@ static int yaffs_ScanBackwards(yaffs_Dev #ifndef CONFIG_YAFFS_USE_OWN_SORT { /* Use qsort now. */ - qsort(blockIndex, nBlocksToScan, sizeof(yaffs_BlockIndex), ybicmp); + yaffs_qsort(blockIndex, nBlocksToScan, sizeof(yaffs_BlockIndex), ybicmp); } #else {
