Changeset 363 for trunk/src/sh_files.c


Ignore:
Timestamp:
Oct 21, 2011, 1:08:28 AM (13 years ago)
Author:
katerina
Message:

Change zAVL implementation to allow integer keys.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_files.c

    r362 r363  
    897897  if (zfileList == NULL)
    898898    {
    899       zfileList = zAVLAllocTree (zdirstack_key);
     899      zfileList = zAVLAllocTree (zdirstack_key, zAVL_KEY_STRING);
    900900      if (zfileList == NULL)
    901901        {
     
    975975          if (zglobList == NULL)
    976976            {
    977               zglobList = zAVLAllocTree (zdirstack_key);
     977              zglobList = zAVLAllocTree (zdirstack_key, zAVL_KEY_STRING);
    978978              if (zglobList == NULL)
    979979                {
     
    14561456  if (tree == NULL)
    14571457    {
    1458       tree = zAVLAllocTree (zdirstack_key);
     1458      tree = zAVLAllocTree (zdirstack_key, zAVL_KEY_STRING);
    14591459      if (tree == NULL)
    14601460        {
Note: See TracChangeset for help on using the changeset viewer.