From 4dbfaf3ec108ca07b00ef6296d4fb1e63efca29b Mon Sep 17 00:00:00 2001
From: Robin Randhawa <robin.randhawa@arm.com>
Date: Wed, 27 Jan 2021 17:19:37 +0000
Subject: [PATCH] Nit: Add missing close brace in code comment

---
 src/syscall/process.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/syscall/process.rs b/src/syscall/process.rs
index 5e7dd27c..df1b24de 100644
--- a/src/syscall/process.rs
+++ b/src/syscall/process.rs
@@ -519,7 +519,7 @@ pub fn clone(flags: CloneFlags, stack_base: usize) -> Result<ContextId> {
 
                         // Update the pointer to the InterruptStack to reflect the new process'
                         // stack. (Without this the pointer would be InterruptStack on the parent
-                        // process' stack.
+                        // process' stack).
                         *(new_sp as *mut u64) = new_sp as u64 + istack_offset;
 
                         // Update tpidr_el0 in the new process' InterruptStack
-- 
GitLab