From 8f0a3b11b8afeb8f8dd4b1cb72ddb9c1458f2bb3 Mon Sep 17 00:00:00 2001 From: Stéphane Aulery Date: Tue, 18 Nov 2014 00:40:54 +0100 Subject: Fix homepage url byte[...] -> kraxel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Aulery Signed-off-by: Gerd Hoffmann --- wr/write-ppm.c | 2 +- wr/write-ps.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'wr') diff --git a/wr/write-ppm.c b/wr/write-ppm.c index d16035b..bd5a0f0 100644 --- a/wr/write-ppm.c +++ b/wr/write-ppm.c @@ -15,7 +15,7 @@ ppm_write(FILE *fp, struct ida_image *img) { fprintf(fp,"P6\n" "# written by ida " VERSION "\n" - "# http://bytesex.org/ida/\n" + "# https://www.kraxel.org/blog/linux/fbida/\n" "%d %d\n255\n", img->i.width,img->i.height); fwrite(img->data, img->i.height, 3*img->i.width, fp); diff --git a/wr/write-ps.c b/wr/write-ps.c index ee34988..adbf72a 100644 --- a/wr/write-ps.c +++ b/wr/write-ps.c @@ -42,7 +42,7 @@ static struct PAPER formats[] = { static const char *header = "%%!PS-Adobe-2.0 EPSF-2.0\n" -"%%%%Creator: ida " VERSION " (http://bytesex.org/ida/)\n" +"%%%%Creator: ida " VERSION " (https://www.kraxel.org/blog/linux/fbida/)\n" "%%%%Pages: 1\n" "%%%%BoundingBox: %d %d %d %d\n" "%%%%DocumentFonts: \n" -- cgit