X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoder.c;h=9990e2998e14bdfff730d05170f39e7c078fa277;hb=82738302754039cffb4ee84b2fa9b1450612a5e3;hp=83b758f84a8f546496904b287fd40a5dfb524d0e;hpb=01b60707d7aa8db402c9288472c102da483cad39;p=libsigrokdecode.git diff --git a/decoder.c b/decoder.c index 83b758f..9990e29 100644 --- a/decoder.c +++ b/decoder.c @@ -767,8 +767,11 @@ SRD_API int srd_decoder_load(const char *module_name) return SRD_OK; except_out: - srd_exception_catch("Failed to load decoder %s: %s", - module_name, fail_txt); + /* Don't show a message for the "common" directory, it's not a PD. */ + if (strcmp(module_name, "common")) { + srd_exception_catch("Failed to load decoder %s: %s", + module_name, fail_txt); + } fail_txt = NULL; err_out: if (fail_txt)