summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Kanzenbach <kurt@linutronix.de>2019-03-22 15:28:36 +0100
committerJohn Ogness <john.ogness@linutronix.de>2019-03-22 15:45:41 +0106
commit4a9442bd2c70f2ef1b4bee6328499113efcde4a1 (patch)
tree1af97aeb5f514ac9dad533b09a0e657b3d5fddaa
parent22af24885f83a5a45769a2436cad05db2bff7b85 (diff)
app/debugging: unify path to hello binary
For GDB sometimes the hello binary is located in /home/devel/work and sometimes in /home/devel/jan. Unify it. Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>
-rw-r--r--application-devel/debugging-tools/pres_debugging-tools_en.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/application-devel/debugging-tools/pres_debugging-tools_en.tex b/application-devel/debugging-tools/pres_debugging-tools_en.tex
index 5c5b552..e76b32c 100644
--- a/application-devel/debugging-tools/pres_debugging-tools_en.tex
+++ b/application-devel/debugging-tools/pres_debugging-tools_en.tex
@@ -87,7 +87,7 @@ Breakpoint 1 at 0x400528: file hello.c, line 5.
run the program again (now with breakpoint set)
\begin{verbatim}
(gdb) run
-Starting program: /home/jan/work/examples/hello
+Starting program: /home/devel/work/hello
Breakpoint 1, main () at hello.c:5
5 printf("Hello, world!\n");