aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2004-09-18 16:17:56 +0800
committerdanfe <danfe@FreeBSD.org>2004-09-18 16:17:56 +0800
commitad733b65a35148194e3aa4502a48b1ecdf53f5f2 (patch)
treec1ef8fe9c4f882d8b2f0ec04c0aaa4af493f5520
parenta814f5490c144e61617133168a7cfaae7997382a (diff)
downloadfreebsd-ports-gnome-ad733b65a35148194e3aa4502a48b1ecdf53f5f2.tar.gz
freebsd-ports-gnome-ad733b65a35148194e3aa4502a48b1ecdf53f5f2.tar.zst
freebsd-ports-gnome-ad733b65a35148194e3aa4502a48b1ecdf53f5f2.zip
Fix small C++ typo and unbreak the build.
Reported by: pointyhat.freebsd.org Approved by: portmgr (marcus), fjoe (mentor, implicit)
-rw-r--r--comms/aldo/files/patch-libmenus::dialog.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/comms/aldo/files/patch-libmenus::dialog.h b/comms/aldo/files/patch-libmenus::dialog.h
new file mode 100644
index 000000000000..afd5556bc3c2
--- /dev/null
+++ b/comms/aldo/files/patch-libmenus::dialog.h
@@ -0,0 +1,19 @@
+--- libmenus/dialog.h.orig Fri Oct 3 00:23:55 2003
++++ libmenus/dialog.h Fri Sep 17 18:44:10 2004
+@@ -24,6 +24,7 @@
+ * *
+ ***************************************************************************/
+
++#include <iostream>
+ #include <string>
+ #include <vector>
+
+@@ -121,7 +122,7 @@
+ unsigned int choice = 0;
+ do
+ {
+- std::cout<<endl<<m_prompt;
++ std::cout<<std::endl<<m_prompt;
+
+ std::string trash;
+ std::cin>>trash;