# HG changeset patch # User Some Random Person # Date 1331360264 28800 # Node ID 4b5abed39ab984bc14fe6344513856ea45ae084b # Parent 520455c14c216539b673c6fbc353ee268a0a8c3c changed names in comments, to avoid repeats during global replace diff -r 520455c14c21 -r 4b5abed39ab9 PrivateHash.c --- a/PrivateHash.c Mon Feb 13 10:31:17 2012 -0800 +++ b/PrivateHash.c Fri Mar 09 22:17:44 2012 -0800 @@ -229,14 +229,14 @@ { if( entry->content != NULL ) (*(table->freeEntryContentFn))( entry->content ); - VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it + VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it VMS_int__free( entry ); } void freeHashEntryButNotContent( HashEntry *entry ) { - VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it + VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it VMS_int__free( entry ); } diff -r 520455c14c21 -r 4b5abed39ab9 PrivateHash.h --- a/PrivateHash.h Mon Feb 13 10:31:17 2012 -0800 +++ b/PrivateHash.h Fri Mar 09 22:17:44 2012 -0800 @@ -13,8 +13,8 @@ #include #include -#include "../../VMS_Implementations/VMS_impl/VMS_primitive_data_types.h" -#include "../../VMS_Implementations/VMS_impl/vmalloc.h" +#include "VMS_impl/VMS_primitive_data_types.h" +#include "VMS_impl/vmalloc.h" #define TRUE 1 #define FALSE 0