tMove comment above line in qemu-wrapper. - uwu - hardware bitcoin wallet software and build system
HTML git clone https://git.parazyd.org/uwu
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit deba6f9b609cc887bca76094fc7ca951d8c8594f
DIR parent 86f7d46bae7954ccfe740272f3ca513a546041be
HTML Author: parazyd <parazyd@dyne.org>
Date: Tue, 2 Feb 2021 22:05:11 +0100
Move comment above line in qemu-wrapper.
Diffstat:
M qemu-wrapper.c.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
DIR diff --git a/qemu-wrapper.c.in b/qemu-wrapper.c.in
t@@ -9,7 +9,8 @@ int main(int argc, char **argv, char **envp)
newargv[0] = argv[0];
newargv[1] = "-cpu";
- newargv[2] = "cortex-a8"; /* here you can set the cpu you are building for */
+ /* Here you can set the cpu you are building for */
+ newargv[2] = "cortex-a8";
memcpy(&newargv[3], &argv[1], sizeof(*argv) * (argc-1));
newargv[argc+2] = NULL;