diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-05-22 20:51:29 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:26 +0100 |
commit | c802a7fe6445abaab7ab949dbcf62644f6d1ac41 (patch) | |
tree | bece8f6ae0cb58fe8c3dc98898032feabbeadb19 | |
parent | c9b3fdc49b0276fdfc4adc88a53292b838d311c9 (diff) |
get_hkl: Fix stupid bug
-rw-r--r-- | src/get_hkl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 026198ab..466a8752 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -380,7 +380,7 @@ int main(int argc, char *argv[]) } input = read_reflections(input_file); - free(input); + free(input_file); if ( check_list_symmetry(input, mero) ) { ERROR("The input reflection list does not appear to" " have symmetry %s\n", mero); |