summaryrefslogtreecommitdiff
path: root/kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex
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 /kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex
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 'kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex')
-rw-r--r--kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex14
1 files changed, 7 insertions, 7 deletions
diff --git a/kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex b/kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex
index bd1140b..ac39c19 100644
--- a/kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex
+++ b/kernel-devel/kernel-best-practices/handout_kernel-best-practices_en.tex
@@ -18,7 +18,7 @@ orig/hello.c
\begin{lstlisting}
int main (int argc, char **argv)
{
- return 0;
+ return 0;
}
\end{lstlisting}
@@ -37,8 +37,8 @@ new/hello.c
int main (int argc, char **argv)
{
- printf ("Huhu World\n");
- return 0;
+ printf ("Huhu World\n");
+ return 0;
}
\end{lstlisting}
@@ -110,7 +110,7 @@ orig/hello.c
\begin{lstlisting}
int main (int argc, char **argv)
{
- return 0;
+ return 0;
}
\end{lstlisting}
@@ -129,8 +129,8 @@ your default editor will be opened, make your changes to the source:
int main (int argc, char **argv)
{
- printf ("Huhu World\n");
- return 0;
+ printf ("Huhu World\n");
+ return 0;
}
\end{lstlisting}
@@ -219,7 +219,7 @@ orig/hello.c
\begin{lstlisting}
int main (int argc, char **argv)
{
- return 0;
+ return 0;
}
\end{lstlisting}