summaryrefslogtreecommitdiff
path: root/dist/libxcb/doc/tutorial/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'dist/libxcb/doc/tutorial/index.html')
-rw-r--r--dist/libxcb/doc/tutorial/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/libxcb/doc/tutorial/index.html b/dist/libxcb/doc/tutorial/index.html
index c5404263f..aa3ae1706 100644
--- a/dist/libxcb/doc/tutorial/index.html
+++ b/dist/libxcb/doc/tutorial/index.html
@@ -173,7 +173,7 @@
with the <a href="http://xcb.freedesktop.org">XCB</a>
library. keep in mind that XCB, like the
<a href="http://tronche.com/gui/x/xlib/introduction">Xlib</a>
- library, isn't what post programmers wanting to write X
+ library, isn't what most programmers wanting to write X
applications are looking for. They should use a much higher
level GUI toolkit like Motif,
<a href="http://www.lesstif.org">LessTiff</a>,
@@ -471,8 +471,6 @@ main ()
diff = end - start;
/* free var */
- for (i = 0; i &lt; count; ++i)
- free (names[i]);
free (atoms);
free (cs);
@@ -494,6 +492,8 @@ main ()
printf ("ratio : %f\n", diff_x / diff);
free (atoms_x);
+ for (i = 0; i &lt; count; ++i)
+ free (names[i]);
free (names);
XCloseDisplay (disp);