]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/alist.c
Use the command line utility dropdb instead of the psql command
[bacula/bacula] / bacula / src / lib / alist.c
index 72613242ac9b436af605ebc8e9a73a6ffeaab89d..b9425c61143b3e3080ee7b5bd88c82912ca659b7 100644 (file)
@@ -94,7 +94,7 @@ int main()
       sprintf(buf, "This is item %d", i);
       fileset->mylist.append(bstrdup(buf));
    } 
-   for (int i=0; i<fileset->mylist.size(); i++) {
+   for (int i=0; i< fileset->mylist.size(); i++) {
       printf("Item %d = %s\n", i, (char *)fileset->mylist[i]);  
    }
    fileset->mylist.destroy();
@@ -107,7 +107,7 @@ int main()
       sprintf(buf, "This is item %d", i);
       mlist->append(bstrdup(buf));
    } 
-   for (int i=0; i<mlist->size(); i++) {
+   for (int i=0; i< mlist->size(); i++) {
       printf("Item %d = %s\n", i, (char *)mlist->get(i));  
    }