aboutsummaryrefslogtreecommitdiff
path: root/comms/aldo
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2004-09-18 08:17:56 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2004-09-18 08:17:56 +0000
commitf835efb5aae59d22ceed1919f29e7d1cd6e21a6c (patch)
tree3e17a4651ceb19285cc914219359cd3dd2e8bb36 /comms/aldo
parent6155fc8ed5133632a4702b0fe7dea8d3823089ea (diff)
downloadports-f835efb5aae59d22ceed1919f29e7d1cd6e21a6c.tar.gz
ports-f835efb5aae59d22ceed1919f29e7d1cd6e21a6c.zip
Fix small C++ typo and unbreak the build.
Reported by: pointyhat.freebsd.org Approved by: portmgr (marcus), fjoe (mentor, implicit)
Notes
Notes: svn path=/head/; revision=118228
Diffstat (limited to 'comms/aldo')
-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;