From 13354872d688eec2ed531e547c4f0c83d588c18b Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 31 Mar 2021 09:54:55 +0200 Subject: [PATCH] Ptrace returns a long int. --- src/mc/ModelChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mc/ModelChecker.cpp b/src/mc/ModelChecker.cpp index df403c3412..8f0728ffc1 100644 --- a/src/mc/ModelChecker.cpp +++ b/src/mc/ModelChecker.cpp @@ -266,7 +266,7 @@ void ModelChecker::handle_waitpid() // From PTRACE_O_TRACEEXIT: #ifdef __linux__ if (status>>8 == (SIGTRAP | (PTRACE_EVENT_EXIT<<8))) { - int ptrace_res = ptrace(PTRACE_GETEVENTMSG, remote_process_->pid(), 0, &status); + long ptrace_res = ptrace(PTRACE_GETEVENTMSG, remote_process_->pid(), 0, &status); xbt_assert(ptrace_res != -1, "Could not get exit status"); if (WIFSIGNALED(status)) { MC_report_crash(status); -- 2.20.1