I'm using the llncs document class and try to get two figures side-by-side. I found a solution, but I get a hbox underflow if my captions have a bad length. Here is a minimal example:
\documentclass{llncs}
\begin{document}
\begin{figure}
\begin{minipage}[t]{0.4\linewidth}
\caption{Fragwrdige Zusammengehrigkeit bei sehr grosen Clustern}% Underfull \hbox (badness 10000) in paragraph at lines
\end{minipage}%
\begin{minipage}[t]{0.4\linewidth}
\caption{Text}
\end{minipage}
\end{figure}
\end{document}
The PDF output seems to by OK, so I could ignore this warning. But I wonder if there is a correct solution for this problem. Any ideas?

\usepackage[german]{babel}allows latex to break the words using German rules which brings the badness down to 1803 – David Carlisle Feb 11 at 12:48