summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/source/unix/misc/gnome-open-url.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/unix/misc/gnome-open-url.c b/shell/source/unix/misc/gnome-open-url.c
index 5fe39ea2dc3a..ec47c2ab4cd4 100644
--- a/shell/source/unix/misc/gnome-open-url.c
+++ b/shell/source/unix/misc/gnome-open-url.c
@@ -87,7 +87,7 @@ int main(int argc, char *argv[] )
{
GError *error = NULL;
char *fallback;
- char *index;
+ char *idx;
int retcode = -1;
if( argc != 2 )
@@ -108,11 +108,11 @@ int main(int argc, char *argv[] )
*/
fallback = strdup(argv[0]);
- index = strstr(fallback, "gnome-open-url");
- if ( NULL != index )
+ idx = strstr(fallback, "gnome-open-url");
+ if ( NULL != idx )
{
char *args[3];
- strncpy(index, "open-url", 9);
+ strncpy(idx, "open-url", 9);
args[0] = fallback;
args[1] = argv[1];
args[2] = NULL;