unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 9f00f69b8d8dff60f9210ea9045071fc7a1dbc14 422 bytes (raw)
name: util/debug_print.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
#include "debug_print.h"

void
_debug_printf (const char *format, ...)
{
    va_list va_args;

    va_start (va_args, format);
    vfprintf (stderr, format, va_args);
    va_end (va_args);
    
}

void
_internal_error (const char *format, ...)
{
    va_list va_args;

    va_start (va_args, format);

    fprintf (stderr, "Internal error: ");
    vfprintf (stderr, format, va_args);

    va_end (va_args);
    exit (1);
}

debug log:

solving 9f00f69b ...
found 9f00f69b in https://yhetil.org/notmuch/20180730224555.26047-2-david@tethera.net/ ||
	https://yhetil.org/notmuch/20180720233746.2844-2-david@tethera.net/

applying [1/1] https://yhetil.org/notmuch/20180730224555.26047-2-david@tethera.net/
diff --git a/util/debug_print.c b/util/debug_print.c
new file mode 100644
index 00000000..9f00f69b

1:17: trailing whitespace.
    
Checking patch util/debug_print.c...
Applied patch util/debug_print.c cleanly.
warning: 1 line adds whitespace errors.

skipping https://yhetil.org/notmuch/20180720233746.2844-2-david@tethera.net/ for 9f00f69b
index at:
100644 9f00f69b8d8dff60f9210ea9045071fc7a1dbc14	util/debug_print.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).