thats a little weird
[goDBhammer.git] / src / dbibridge.go
index 4c72f2f..64b7d1b 100644 (file)
@@ -13,11 +13,11 @@ type DBIConnection struct {
        dbinit bool;
 }
 
-func DBICreate()(connection *DBConnection)
+func DBICreate()(connection *DBIConnection)
 {
-       var dbCon *DBConnection;
+       var dbCon *DBIConnection;
        
-       dbCon = new(DBConnection);
+       dbCon = new(DBIConnection);
        dbCon.dbinit = false;
        
        return dbCon;