From 477c626d509904d8efa294f2f738ab969f05516f Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 27 Mar 2013 20:00:41 -0400 Subject: [PATCH 1/2] Fix upper_case for letter 'z' (id 122). --- src/string.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string.F90 b/src/string.F90 index d1a5e68d74..3f0c87219a 100644 --- a/src/string.F90 +++ b/src/string.F90 @@ -179,7 +179,7 @@ contains do i = 1, len(word) ic = ichar(word(i:i)) - if (ic >= 97 .and. ic < 122) word(i:i) = char(ic-32) + if (ic >= 97 .and. ic <= 122) word(i:i) = char(ic-32) end do end subroutine upper_case From 47e0b2ab4f0a5612a74f9a74694a193a88948492 Mon Sep 17 00:00:00 2001 From: Locke Date: Thu, 28 Mar 2013 18:47:18 +0800 Subject: [PATCH 2/2] fix DEPENDENCIES add: input_xml.o: templates/plots_t.o --- src/DEPENDENCIES | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DEPENDENCIES b/src/DEPENDENCIES index 90e392124a..61c31dd909 100644 --- a/src/DEPENDENCIES +++ b/src/DEPENDENCIES @@ -222,6 +222,7 @@ input_xml.o: templates/geometry_t.o input_xml.o: templates/materials_t.o input_xml.o: templates/settings_t.o input_xml.o: templates/tallies_t.o +input_xml.o: templates/plots_t.o interpolation.o: constants.o interpolation.o: endf_header.o