From 1ac48ef57de58cac65d1fe14b0228615ffd40b02 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Thu, 26 May 2022 17:49:38 +0000 Subject: [PATCH] scratch: Add missing return statement to scratch-simulator.cc --- scratch/scratch-simulator.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scratch/scratch-simulator.cc b/scratch/scratch-simulator.cc index aa7cc6fa4..1e87bd0ab 100644 --- a/scratch/scratch-simulator.cc +++ b/scratch/scratch-simulator.cc @@ -27,4 +27,6 @@ main (int argc, char *argv[]) Simulator::Run (); Simulator::Destroy (); + + return 0; }