changeset 21:4b5abed39ab9 MC_shared

changed names in comments, to avoid repeats during global replace
author Some Random Person <seanhalle@yahoo.com>
date Fri, 09 Mar 2012 22:17:44 -0800
parents 520455c14c21
children f5972b1ddb29
files PrivateHash.c PrivateHash.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/PrivateHash.c	Mon Feb 13 10:31:17 2012 -0800
     1.2 +++ b/PrivateHash.c	Fri Mar 09 22:17:44 2012 -0800
     1.3 @@ -229,14 +229,14 @@
     1.4   {
     1.5     if( entry->content != NULL )
     1.6        (*(table->freeEntryContentFn))( entry->content );
     1.7 -   VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it
     1.8 +   VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it
     1.9     VMS_int__free( entry );
    1.10   }
    1.11  
    1.12  void
    1.13  freeHashEntryButNotContent( HashEntry *entry )
    1.14   {
    1.15 -   VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it
    1.16 +   VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it
    1.17     VMS_int__free( entry );
    1.18   }
    1.19  
     2.1 --- a/PrivateHash.h	Mon Feb 13 10:31:17 2012 -0800
     2.2 +++ b/PrivateHash.h	Fri Mar 09 22:17:44 2012 -0800
     2.3 @@ -13,8 +13,8 @@
     2.4  #include <errno.h>
     2.5  #include <stdlib.h>
     2.6  
     2.7 -#include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h"
     2.8 -#include "../../VMS_Implementations/VMS_impl/vmalloc.h"
     2.9 +#include "VMS_impl/VMS_primitive_data_types.h"
    2.10 +#include "VMS_impl/vmalloc.h"
    2.11  
    2.12  #define TRUE     1
    2.13  #define FALSE    0