I am using the package lstcustom, it's a kind of listings.
And I get a confusing error "Missing number, treated as zero".
I cannot find what I am doing wrong.. :/ Do you have any suggestions?
The resulting pdf looks fine, I guess..
Thank you a lot for your help!
Edit: That's the code from above
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{lstcustom}
\begin{document}
\begin{frame}[fragile]
Die Zahlen können in verschiedener Form dargestellt werden:
\begin{itemize}
\item Dezimalform
\item Oktalform
\begin{lstlisting}
int i = 011;
System.out.println(i); // 9
\end{lstlisting}
\end{itemize}
\end{frame}
\end{document}

lstcustomisn't available on my system. Can it be found online? If I replace\usepackage{lstcustom}with\usepackage{listings}, your test document compiles fine. – Mico Mar 09 '21 at 11:30