From: Gerhard Sittig Date: Mon, 21 Nov 2022 13:20:53 +0000 (+0100) Subject: Signal: Add missing item separator in channel names list X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=3919e81ffabe47405d4894ec437af83b010f4d27;hp=a7988e20ee451ccc81f43635af41c3bff1ccc783 Signal: Add missing item separator in channel names list The SCL item in the ChannelNames[] table lacked the separator, which made it "run into" the next item (preprocessor string concatenation). Add the missing separator. This amends commits 9e40e83daf6a (which introduced the lack of the separator while it did not take effect yet) and 7d5a9c3e79cb (which made it take effect when items got added and rearranged). Reported-By: Dominik Sliwa --- diff --git a/pv/views/trace/signal.cpp b/pv/views/trace/signal.cpp index cda9a4a4..8840825c 100644 --- a/pv/views/trace/signal.cpp +++ b/pv/views/trace/signal.cpp @@ -51,7 +51,7 @@ const char *const ChannelNames[] = { "TX", "RX", "SDA", - "SCL" + "SCL", "SCLK", "MOSI", "MISO",