aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Aulery <saulery@free.fr>2014-11-18 00:40:54 +0100
committerGerd Hoffmann <kraxel@redhat.com>2014-11-18 12:06:33 +0100
commit8f0a3b11b8afeb8f8dd4b1cb72ddb9c1458f2bb3 (patch)
treee8cb5a30eb050dcc020d93a3a0c4bc8bc1c43dde
parent9c2956a1b21c125ee4e0a20fca3637cfec9fed53 (diff)
downloadfbida-8f0a3b11b8afeb8f8dd4b1cb72ddb9c1458f2bb3.tar.gz
Fix homepage url byte[...] -> kraxel
Signed-off-by: Stéphane Aulery <saulery@free.fr> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--wr/write-ppm.c2
-rw-r--r--wr/write-ps.c2
2 files changed, 2 insertions, 2 deletions
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"