summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Żenczykowski <maze@google.com>2023-12-21 01:18:56 -0800
committerMaciej Żenczykowski <maze@google.com>2023-12-21 01:20:13 -0800
commit3210e4e49222e391d738b5a713bd93c5ab0f5900 (patch)
treef048b49d28df8e175786866c2937114c1daa72c0
parent5615ac8a4c4bc284da62c7650c45e9a5bd4885e4 (diff)
downloadapf-3210e4e49222e391d738b5a713bd93c5ab0f5900.tar.gz
apf_interpreter.h: convert hard (non-breaking) spaces to normal ascii spaces
Verified lack of non-ascii via: find -type d -name .git -prune -o -type f -print0 | xargs -0 cat | xxd -ps -c 1 | sort -u | egrep -v '^(0a|[2-6][0-9a-f]|7[0-9a-e])$' and git grep $'\xa0\xc2' Bug: 293694479 Signed-off-by: Maciej Żenczykowski <maze@google.com> Change-Id: Ica8ca33fc54f291b28f0ae455959e06945258567
-rw-r--r--apf_interpreter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apf_interpreter.h b/apf_interpreter.h
index 368ae04..1c8e7c9 100644
--- a/apf_interpreter.h
+++ b/apf_interpreter.h
@@ -37,9 +37,9 @@ extern "C" {
* begins at program + program_len and ends at program + ram_len - 1,
* as described in the following diagram:
*
- *     program         program + program_len    program + ram_len
- *        |    text section    | data section    |
- *    +--------------------+------------------------+
+ * program program + program_len program + ram_len
+ * | text section | data section |
+ * +--------------------+------------------------+
*
* @param program the program bytecode, followed by the writable data region.
* @param program_len the length in bytes of the read-only portion of the APF