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 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