From 8f1832ee3bce790273029074c30815452a9f47f1 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 14 Feb 2018 20:46:16 -0500 Subject: Print PNG path on gfxx dump --- bin/gfxx.c | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/gfxx.c') diff --git a/bin/gfxx.c b/bin/gfxx.c index 39cc4c19..50568c0d 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 -- cgit 1.4.1 ster dontfiles
summary refs log tree commit diff
path: root/home/.config/nvim/ftdetect/mdoc.vim (unfollow)
Commit message (Expand)Author
2019-02-18Match whitespace between * [] {}June McEnroe
2019-02-18Fix function-like #define regexJune McEnroe
2019-02-18Match Tag in RustJune McEnroe
2019-02-18Match sh functions as TagJune McEnroe
2019-02-18Match Sh and Ss as Tag in mdocJune McEnroe
2019-02-18Match statics and typedefs as TagJune McEnroe
2019-02-18Clean up htmlHeaderJune McEnroe
2019-02-18Remove hi line numberingJune McEnroe
2019-02-18Add Tag class to hiJune McEnroe
2019-02-17Generate HTML with hi -n -f html -o anchorJune McEnroe
2019-02-17Add hi -f html -o anchor for line number linksJune McEnroe
2019-02-17Simplify temp trap in upJune McEnroe
2019-02-17Add line numbers to hiJune McEnroe
2019-02-17Always split spans after newlinesJune McEnroe
2019-02-15Color format specifiers light cyan in vimJune McEnroe
2019-02-15Highlight Interp as yellowJune McEnroe
2019-02-15Highlight strings in sh command substitutionsJune McEnroe
2019-02-15Add nmap gpJune McEnroe
2019-02-14Avoid newline when copying URL to pasteboardJune McEnroe
2019-02-13Add forgotten "sixth" book of H2G2June McEnroe