thunderbird-patch-review

Easy-to-use patch review interface for Thunderbird

Contribute: ~marcc/thunderbird-review-plugin@lists.sr.ht

git clone git://mccd.space/thunderbird-patch-review

patch2.body (325B)

      1 ---
      2  src/log.c | 6 ++++++
      3  1 file changed, 6 insertions(+)
      4  create mode 100644 src/log.c
      5 
      6 diff --git a/src/log.c b/src/log.c
      7 new file mode 100644
      8 index 0000000..52ca3a1
      9 --- /dev/null
     10 +++ b/src/log.c
     11 @@ -0,0 +1,6 @@
     12 +#include <stdio.h>
     13 +
     14 +void log_err(const char *msg)
     15 +{
     16 +	fprintf(stderr, "error: %s\n", msg);
     17 +}
     18 -- 
     19 2.55.0
     20