summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-14 20:46:16 -0500
committerJune McEnroe <programble@gmail.com>2018-02-14 20:46:16 -0500
commit2675e1b83491c6b3bd24ce6d7c99703c1fd8a6b2 (patch)
treeca2683df1891fdd26b38b52624cabcfa9ee29e80 /bin
parentAdd gfxx 4444 preset (diff)
downloadsrc-2675e1b83491c6b3bd24ce6d7c99703c1fd8a6b2.tar.gz
src-2675e1b83491c6b3bd24ce6d7c99703c1fd8a6b2.zip
Print PNG path on gfxx dump
Diffstat (limited to '')
-rw-r--r--bin/gfxx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 9eae971d..674b68c9 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -335,6 +335,7 @@ static void pngDump(uint32_t *src, size_t srcWidth, size_t srcHeight) {
     snprintf(pngPath, sizeof(pngPath), "%s%04u.png", prefix, counter++);
     png = fopen(pngPath, "wx");
     if (!png) err(EX_CANTCREAT, "%s", pngPath);
+    printf("%s\n", pngPath);
 
     const uint8_t SIGNATURE[] = { 0x89, 'P', 'N', 'G', '\r', '\n', 0x1A, '\n' };
     const uint8_t HEADER[] = { 8, 2, 0, 0, 0 }; // 8-bit RGB
an title='2015-08-13 15:37:42 +0200'>2015-08-13cache.c: fix header orderJohn Keeping 2015-08-13configfile.c: don't include system headers directlyJohn Keeping 2015-08-13Remove redundant includesJohn Keeping 2015-08-13Makefile: include Git's config.mak.unameJohn Keeping 2015-08-13tests: allow shell to be overriddenJohn Keeping 2015-08-13redirect: cleanlinessJason A. Donenfeld 2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld 2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt