From 2675e1b83491c6b3bd24ce6d7c99703c1fd8a6b2 Mon Sep 17 00:00:00 2001 From: Curtis 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') 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 -- cgit 1.4.1 nches'> manuals for other systems
about summary refs log tree commit diff
path: root/OpenBSD (unfollow)
Commit message (Collapse)Author
2021-08-22Update to Linux man-pages 5.12Štěpán Němec
2021-06-21Add manuals for macOS 11.3June McEnroe
2021-05-08Update to OpenBSD 6.9June McEnroe
2021-04-26Update to Linux man-pages 5.11June McEnroe
2021-04-26Update to FreeBSD 13.0June McEnroe
2021-01-27Completely rewrite how manuals are fetched and installedJune McEnroe
Also add section 6 manuals from NetBSD and OpenBSD!
2020-12-14Update to man-pages-posix 2017-aJune McEnroe
2020-12-14Update to OpenBSD 6.8June McEnroe
2020-12-14Update to NetBSD 9.1June McEnroe
2020-12-14Update to man-pages 5.09June McEnroe
2020-12-14Update to FreeBSD 12.2June McEnroe
2020-06-08Update to OpenBSD 6.7June McEnroe
2020-05-04Add hack for macOS to search extra man sectionsJune McEnroe
2020-05-04Don't clear MANSECTJune McEnroe