Changeset: b9038ee46e5d for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b9038ee46e5d
Modified Files:
        sql/src/storage/sql_catalog.mx
Branch: Jun2010
Log Message:

spaces -> tabs, no content change


diffs (34 lines):

diff -r f642a713de77 -r b9038ee46e5d sql/src/storage/sql_catalog.mx
--- a/sql/src/storage/sql_catalog.mx    Wed Jul 14 11:06:41 2010 +0200
+++ b/sql/src/storage/sql_catalog.mx    Wed Jul 14 11:33:32 2010 +0200
@@ -293,19 +293,20 @@
        list *l = s->funcs.set, *res = NULL;
        node *n = NULL;
 
-        if (l)
-                for (n = l->h; n; n = n->next) {
-                        sql_base *b = n->data;
-                        sql_func *f = n->data;
+       if (l) {
+               for (n = l->h; n; n = n->next) {
+                       sql_base *b = n->data;
+                       sql_func *f = n->data;
 
-                        /* check if names match */
-                        if (f->is_func == is_func && name[0] == b->name[0] && 
strcmp(name, b->name) == 0) {
+                       /* check if names match */
+                       if (f->is_func == is_func && name[0] == b->name[0] && 
strcmp(name, b->name) == 0) {
                                if (!res)
-                                       res = list_create((fdestroy) NULL);
+                                       res = list_create((fdestroy)NULL);
                                list_append(res, n->data);
-                        }
-                }
-        return res;
+                       }
+               }
+       }
+       return res;
 }
 
 sql_func *
_______________________________________________
Checkin-list mailing list
Checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to