diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-16 11:03:57 +0100 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-04-14 19:17:48 +0200 |
commit | c3df3a12aa88739e303340ccd7436d467b4662d2 (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /influxdb | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) |
Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2
* Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'influxdb')
-rw-r--r-- | influxdb/metric_anomaly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/influxdb/metric_anomaly.c b/influxdb/metric_anomaly.c index 49f204163..873dbfbc9 100644 --- a/influxdb/metric_anomaly.c +++ b/influxdb/metric_anomaly.c @@ -104,7 +104,7 @@ int main(int argc, char *argv[]) { if((database == NULL) || (query == NULL)) help(); - snprintf(cmd, sizeof(cmd), "influx -database '%s' -precision s -execute '%s'", database, query); + ndpi_snprintf(cmd, sizeof(cmd), "influx -database '%s' -precision s -execute '%s'", database, query); if(verbose) printf("%s\n", cmd); |