summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorJohn Ogness <john.ogness@linutronix.de>2018-04-19 11:03:45 +0200
committerJohn Ogness <john.ogness@linutronix.de>2018-04-19 11:03:45 +0200
commitea793b23c98403cefb38670d02a778b843bdf997 (patch)
treeabef3328bd017512394c315ddff9a3bd4b40a2be /misc
parent6c4b8bc457831a351875ec1415d37ccb471bfc20 (diff)
replace *all* tabs with spaces
There are times when tabs are allowed and times when they are not. Let's just simply never use tabs for anything. This makes it easy to find presentations where tabs were accidentally inserted. Signed-off-by: John Ogness <john.ogness@linutronix.de>
Diffstat (limited to 'misc')
-rw-r--r--misc/pres_minicoredumper_en.tex4
-rw-r--r--misc/pres_xml-fasttrack_en.tex2
2 files changed, 3 insertions, 3 deletions
diff --git a/misc/pres_minicoredumper_en.tex b/misc/pres_minicoredumper_en.tex
index 4eed24b..e288faa 100644
--- a/misc/pres_minicoredumper_en.tex
+++ b/misc/pres_minicoredumper_en.tex
@@ -497,7 +497,7 @@ $ gdb-linutronix /.../mycrasher core
Core was generated by `./mycrasher'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0 0x00000000004008d2 in main () at mycrasher.c:26
-26 *x = 0;
+26 *x = 0;
(gdb) print s
\verbbf{$1 = 0x11eb010 "my string"}
(gdb) print i
@@ -527,7 +527,7 @@ $ gdb-linutronix /.../mycrasher core
Core was generated by `./mycrasher'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0 0x00000000004008d2 in main () at mycrasher.c:26
-26 *x = 0;
+26 *x = 0;
(gdb) print s
$1 = 0x11eb010 "my string"
(gdb) print i
diff --git a/misc/pres_xml-fasttrack_en.tex b/misc/pres_xml-fasttrack_en.tex
index 35027ee..2e193b9 100644
--- a/misc/pres_xml-fasttrack_en.tex
+++ b/misc/pres_xml-fasttrack_en.tex
@@ -285,7 +285,7 @@ static void cb_characters(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len
cb_total++;
for (i = 0;(i<len) && (i < 30);i++)
- output[i] = ch[i];
+ output[i] = ch[i];
output[i] = 0;
fprintf(stdout, "SAX.characters(%s, %d)\n", output, len);