From f37d4b88fd82d2b47e0d10d107a8f2c4f6e37467 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 00:15:51 -0500 Subject: [PATCH] se: Correct offset variable identifier in se_get_exp_mod_output --- exosphere/se.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exosphere/se.c b/exosphere/se.c index cece93c88..c70fdd94a 100644 --- a/exosphere/se.c +++ b/exosphere/se.c @@ -335,7 +335,7 @@ void se_get_exp_mod_output(void *buf, size_t size) { } uint32_t *p_out = ((uint32_t *)buf) + num_dwords - 1; - uint32_t out_ofs = 0; + uint32_t offset = 0; /* Copy endian swapped output. */ while (num_dwords) {