fixed openmp build warnings

This commit is contained in:
Bryan Herman 2014-05-08 14:25:37 -04:00
parent af6b4eaffa
commit 287f986623
2 changed files with 3 additions and 3 deletions

View file

@ -834,8 +834,8 @@ contains
subroutine join_bank_from_threads()
integer :: total ! total number of fission bank sites
integer :: i ! loop index for threads
integer(8) :: total ! total number of fission bank sites
integer :: i ! loop index for threads
! Initialize the total number of fission bank sites
total = 0

View file

@ -416,7 +416,7 @@ contains
#ifdef _OPENMP
! Read and set number of OpenMP threads
n_threads = str_to_int(argv(i))
n_threads = int(str_to_int(argv(i)), 4)
if (n_threads < 1) then
message = "Invalid number of threads specified on command line."
call fatal_error()