aboutsummaryrefslogtreecommitdiff
path: root/fiv.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-01-12 10:15:27 +0100
committerPřemysl Eric Janouch <p@janouch.name>2022-01-12 10:41:33 +0100
commitcfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1 (patch)
tree98381a429383353603cd067b704555116939199c /fiv.c
parentf1e9e47e13875782f6fd82f4861990f7ef7fad5b (diff)
downloadfiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.tar.gz
fiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.tar.xz
fiv-cfa90fb7de19c45bf3dc5046efffa7dc31e8e7b1.zip
Don't hardcode the project name in its URI
Diffstat (limited to 'fiv.c')
-rw-r--r--fiv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fiv.c b/fiv.c
index 0c62c11..d188b25 100644
--- a/fiv.c
+++ b/fiv.c
@@ -404,7 +404,7 @@ show_about_dialog(GtkWidget *parent)
GtkWidget *website = gtk_label_new(NULL);
gtk_label_set_selectable(GTK_LABEL(website), TRUE);
- const char *url = "https://git.janouch.name/p/fiv";
+ const char *url = "https://git.janouch.name/p/" PROJECT_NAME;
gchar *link = g_strdup_printf("<a href='%s'>%s</a>", url, url);
gtk_label_set_markup(GTK_LABEL(website), link);
g_free(link);