Texmaker will give me a lot of warnings:
Underfull \hbox (badness xxxxx) in paragraph at lines xx--xx
My code looks like this.
\documentclass[12pt,a4paper,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{longtable}
\usepackage[left=4cm,right=2.5cm,top=2cm,bottom=2cm,bindingoffset=6mm]{geometry}
\usepackage[ngerman]{babel}
\selectlanguage{ngerman}
\begin{document}
\begin{center}
\begin{longtable}{|p{0.45\textwidth}|p{0.45\textwidth}| }
\hline
Arbeitsschritte & Weitere Informationen unter \\
\endhead
\hline
\multicolumn{2}{|p{0.9\textwidth}|}{1 Voraussetzungen schaffen} \\
\hline
Wissensaufbau in der Kanzlei (bei Bedarf) & Checkliste zum erfolgreichen Einstieg in das Buchen mit digitalen Belegen \\
\hline
IST-Aufnahme im Unternehmen: Prüfung und Schaffung der Einsatzvoraussetzungen für DATEV Unternehmen online für einen reibungslosen Ablauf & DATEV-Online-Anwendungen in DATEV Unternehmen online - Einsatzvoraussetzungen \\
\hline
\end{longtable}
\end{center}
\end{document}
The table looks like this:
In my original file the table is much longer and I will only get warnings for rows where one cell have more rows than the other one.
How can I get rid of the warnings?

biber?centerenvironment around thelongtable, since longtables are automatically horizontally centered.\begin{longtable}{|>{\raggedright\arraybackslash}p{0.45\textwidth}|>{\raggedright\arraybackslash}p{0.45\textwidth}| }and add thearraypackage to your preamble.