about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-09-20 15:31:06 +0000
committerAndreas Jaeger <aj@suse.de>2000-09-20 15:31:06 +0000
commit14e243ce43e6bfb9bdc72d626fc3dca6a807232d (patch)
treeace90cad4404fdbfe3b84e98218f3ba015bf5716
parentb025588ad8bc68ee8bc2f09e4168189f770e0ee5 (diff)
downloadglibc-14e243ce43e6bfb9bdc72d626fc3dca6a807232d.tar.gz
glibc-14e243ce43e6bfb9bdc72d626fc3dca6a807232d.tar.xz
glibc-14e243ce43e6bfb9bdc72d626fc3dca6a807232d.zip
Update.
2000-09-21  Martin Buchholz  <martin@xemacs.org>

	* manual/terminal.texi (Allocation): Sample code correction.
-rw-r--r--ChangeLog4
-rw-r--r--manual/terminal.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 78fbc1e83b..b1c059b472 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-21  Martin Buchholz  <martin@xemacs.org>
+
+	* manual/terminal.texi (Allocation): Sample code correction.
+
 2000-09-20  Andreas Jaeger  <aj@suse.de>
 
 	* iconvdata/Makefile (generated): Add tst-tables.out.
diff --git a/manual/terminal.texi b/manual/terminal.texi
index e762be1655..ae8158e8b9 100644
--- a/manual/terminal.texi
+++ b/manual/terminal.texi
@@ -2030,7 +2030,7 @@ int
 open_pty_pair (int *amaster, int *aslave)
 @{
   int master, slave;
-  char *name
+  char *name;
 
   master = getpt ();
   if (master < 0)