From e88fc7913706d39f0fcdb5e2ca4cf754944b3e35 Mon Sep 17 00:00:00 2001
From: Antonio Ospite <ospite@studenti.unina.it>
Date: Wed, 20 Jan 2010 12:59:55 +0100
Subject: [PATCH] Print the correct program name in usage info.

---
 xicursorset.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/xicursorset.c b/xicursorset.c
index 92c90fd..e66644b 100644
--- a/xicursorset.c
+++ b/xicursorset.c
@@ -19,6 +19,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <libgen.h>
 #include <X11/Xcursor/Xcursor.h>
 #include <X11/extensions/XInput2.h>
 #include <assert.h>
@@ -38,7 +39,8 @@ int main(int argc, char *argv[])
 	Cursor cursor;
 
 	if (argc < 3 || argc > 4) {
-		printf("usage: xicursor <ptrid> <shape> [<theme>]\n");
+		printf("usage: %s <ptrid> <shape> [<theme>]\n",
+				basename(argv[0]));
 		return 1;
 	}
 
-- 
2.1.4