uwu

hardware bitcoin wallet software and build system
git clone https://git.parazyd.org/uwu
Log | Files | Refs | README | LICENSE

commit deba6f9b609cc887bca76094fc7ca951d8c8594f
parent 86f7d46bae7954ccfe740272f3ca513a546041be
Author: parazyd <parazyd@dyne.org>
Date:   Tue,  2 Feb 2021 22:05:11 +0100

Move comment above line in qemu-wrapper.

Diffstat:
Mqemu-wrapper.c.in | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/qemu-wrapper.c.in b/qemu-wrapper.c.in @@ -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;