Changeset: 9e42de913bd1 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=9e42de913bd1
Modified Files:
        gdk/gdk_tracer.c
        gdk/gdk_tracer.h
        sql/scripts/81_tracer.sql
Branch: default
Log Message:

Minor fixes in spelling


diffs (44 lines):

diff --git a/gdk/gdk_tracer.c b/gdk/gdk_tracer.c
--- a/gdk/gdk_tracer.c
+++ b/gdk/gdk_tracer.c
@@ -445,7 +445,7 @@ GDKtracer_flush_buffer(void)
 
 
 gdk_return
-GDKtracer_fill_comp_info(BAT *id, BAT *component, BAT *log_Level)
+GDKtracer_fill_comp_info(BAT *id, BAT *component, BAT *log_level)
 {
        for (int i = 0; i < COMPONENTS_COUNT; i++) {
                if (BUNappend(id, &i, false) != GDK_SUCCEED)
@@ -454,7 +454,7 @@ GDKtracer_fill_comp_info(BAT *id, BAT *c
                if (BUNappend(component, COMPONENT_STR[i], false) != 
GDK_SUCCEED)
                        return GDK_FAIL;
 
-               if (BUNappend(log_Level, LEVEL_STR[LVL_PER_COMPONENT[i]], 
false) != GDK_SUCCEED) 
+               if (BUNappend(log_level, LEVEL_STR[LVL_PER_COMPONENT[i]], 
false) != GDK_SUCCEED) 
                        return GDK_FAIL;
        }
 
diff --git a/gdk/gdk_tracer.h b/gdk/gdk_tracer.h
--- a/gdk/gdk_tracer.h
+++ b/gdk/gdk_tracer.h
@@ -368,6 +368,6 @@ gdk_export gdk_return GDKtracer_log(LOG_
 gdk_export gdk_return GDKtracer_flush_buffer(void);
 
 
-gdk_export gdk_return GDKtracer_fill_comp_info(BAT *id, BAT *component, BAT 
*log_Level);
+gdk_export gdk_return GDKtracer_fill_comp_info(BAT *id, BAT *component, BAT 
*log_level);
 
 #endif /* _GDK_TRACER_H_ */
diff --git a/sql/scripts/81_tracer.sql b/sql/scripts/81_tracer.sql
--- a/sql/scripts/81_tracer.sql
+++ b/sql/scripts/81_tracer.sql
@@ -43,7 +43,7 @@ CREATE PROCEDURE logging.resetadapter()
        EXTERNAL NAME logging.resetadapter;
 
 -- Returns in the form of a SQL result-set all the 
--- components along with their ID the their current 
+-- components along with their ID and their current 
 -- logging level being set
 CREATE FUNCTION logging.compinfo()
 RETURNS TABLE(
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to