\documentclass[10pt,a5paper,twoside]{memoir}
\usepackage{lmodern}
\usepackage{ragged2e}
\usepackage{longtable}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[main=english]{babel}
\usepackage[showframe,pass]{geometry}
\begin{document}
\begin{longtable}{ | >{\RaggedRight}p{3cm} | >{\RaggedRight}p{5.0cm} | }
\hline
Cor & Branco \\
\hline
\end{longtable} \end{document}
The log is:
Underfull \vbox (badness 10000) detected at line 190
[]
The line 190 is \end{longtable}
Update
I took this other example from How to make a table on more than one page by using the table environment
\documentclass[10pt,a5paper,twoside]{memoir}
\usepackage{lmodern}
\usepackage{ragged2e}
\usepackage{ltablex}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[main=english]{babel}
\usepackage[showframe,pass]{geometry}
\begin{document}
\label{tab:daypack}
\begin{tabularx}{\linewidth}{|@{}|cX@{}|}
\caption{Example of an table}\\
\toprule
\textbf{Column 1} & \textbf{Column 2} \\[6pt]
\midrule
\endhead
\hline
$R$ & This is an example sentence \\
\bottomrule
\end{tabularx}
\end{document}
And it is also having the same warning on line 196, but if I comment the \hline the warning stops:
Underfull \vbox (badness 10000) detected at line 196
[]




\end{document}(;-)) and compile this, I get the line warning at21, so whatever you do, it's different if the warning occurs for line 190 ... – Aug 22 '17 at 17:30The line 190 is \end{longtable}. I commented out everything on the file and created the presented example on the question starting at line 170, therefore the example has 20 lines, so 170 + 20 = 190, which is the line where\end{longtable}is on – user Aug 22 '17 at 17:43