# HG changeset patch # User Andrey Skvortsov # Date 1462520917 -10800 # Node ID e27c2af708adbf9ebe6590869d0105833b8325ac # Parent c25446920923cd47d19ffdc39528de1895992e30 fix C compilation warning from gcc about /* inside of comment section. ./beremiz/iec_std_lib.h:240:1: error: "/*" within comment [-Werror=comment] /* ^ compilation terminated due to -Wfatal-errors. cc1: all warnings being treated as errors diff -r c25446920923 -r e27c2af708ad lib/C/iec_std_lib.h --- a/lib/C/iec_std_lib.h Fri Oct 02 10:31:20 2015 +0100 +++ b/lib/C/iec_std_lib.h Fri May 06 10:48:37 2016 +0300 @@ -236,7 +236,7 @@ /* NOTE: The following function was turned into a macro, so it could be used to initialize the initial value of TOD (TIME_OF_DAY) variables */ -/* NOTE: many (but not all) of the same comments made regarding __time_to_timespec() are also valid here, so go and read those comments too! +/* NOTE: many (but not all) of the same comments made regarding __time_to_timespec() are also valid here, so go and read those comments too!*/ /* static inline IEC_TIMESPEC __tod_to_timespec(double seconds, double minutes, double hours) { IEC_TIMESPEC ts;