Changeset: 7a424f11aefc for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7a424f11aefc
Modified Files:
        monetdb5/modules/atoms/mtime.c
Branch: Apr2019
Log Message:

Fix typo


diffs (12 lines):

diff --git a/monetdb5/modules/atoms/mtime.c b/monetdb5/modules/atoms/mtime.c
--- a/monetdb5/modules/atoms/mtime.c
+++ b/monetdb5/modules/atoms/mtime.c
@@ -3766,7 +3766,7 @@ MTIMEtimestamp_to_str(str *s, const time
        (void)mktime(&t); /* corrects the tm_wday etc */
        (void)msec;
        if ((sz = strftime(buf, sizeof(buf), *format, &t)) == 0)
-               throw(MAL, "mtime.timestamp_to_str", "failed to convert 
timestampt to string using format '%s'\n", *format);
+               throw(MAL, "mtime.timestamp_to_str", "failed to convert 
timestamp to string using format '%s'\n", *format);
        *s = GDKmalloc(sz + 1);
        if (*s == NULL)
                throw(MAL, "mtime.timestamp_to_str", SQLSTATE(HY001) 
MAL_MALLOC_FAIL);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to