]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
Generated.
[homepage.git] / blog / index.rss
index 4541e6eaad1487651ed01d255fc470b7c07cf185..38857dcdbdc6cb2faf3752fb57998e4b43dcedd5 100644 (file)
@@ -51,24 +51,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include <errno.h>
-#include <fcntl.h>
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <sys/file.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <unistd.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <sys/file.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
 
 #ifdef TEST_SQLITE
 /*
  * Test sqlite open, as done by gcompris require the libsqlite3-dev
  * package and linking with -lsqlite3.  A more low level test is
  * below.
- * See also <URL: http://www.sqlite.org./faq.html#q5 >.
+ * See also <URL: http://www.sqlite.org./faq.html#q5 >.
  */
-#include <sqlite3.h>
+#include <sqlite3.h>
 #define CREATE_TABLE_USERS                                              \
   "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); "
 int test_sqlite_open(void) {
@@ -101,9 +101,9 @@ int test_sqlite_open(void) {
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the
+ * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the
  * POSIX specification
- * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>.
+ * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -165,7 +165,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf("info: testing subdirectory creation\n");
-  for (level = 0; level < LEVELS; level++) {
+  for (level = 0; level < LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",