Skip to content

Commit

Permalink
BadBackslash
Browse files Browse the repository at this point in the history
  • Loading branch information
HansOlsson committed Mar 17, 2021
1 parent df065c8 commit f31eb00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapters/functions.tex
Expand Up @@ -2322,7 +2322,7 @@ \subsubsection{Arbitrary Placement of Output Parameters, No External Function Va
\end{lstlisting}
Translated call in C:
\begin{lstlisting}[language=C]
myfoo(2.4, \&z1, 3, \&i2);
myfoo(2.4, &z1, 3, &i2);
\end{lstlisting}
\end{example}

Expand Down Expand Up @@ -2352,7 +2352,7 @@ \subsubsection{External Function with Both Function Value and Output Variable}\l
\end{lstlisting}
Translated call in C:
\begin{lstlisting}[language=C]
z1 = myfoo(2.4, 3, \&i2);
z1 = myfoo(2.4, 3, &i2);
\end{lstlisting}
\end{example}

Expand Down

0 comments on commit f31eb00

Please sign in to comment.