Skip to content

Instantly share code, notes, and snippets.

@farhaven
Created May 3, 2009 20:22
Show Gist options
  • Save farhaven/106146 to your computer and use it in GitHub Desktop.
Save farhaven/106146 to your computer and use it in GitHub Desktop.
From 52a82ad04be34e6f18f3b40c4f2778213d59df9c Mon Sep 17 00:00:00 2001
From: Gregor Best <[email protected]>
Date: Sun, 3 May 2009 22:20:51 +0200
Subject: [PATCH] fix compiler warning
Signed-off-by: Gregor Best <[email protected]>
---
main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/main.c b/main.c
index b889908..c3165b8 100644
--- a/main.c
+++ b/main.c
@@ -371,7 +371,7 @@ uri_last_number (int count, int direction)
GRegex *regex;
GMatchInfo *match_info;
const gchar *prev;
- const gint64 *number;
+ int number;
GString *url = g_string_new("");
regex = g_regex_new("^(.+?)([0-9]+)$", 0, 0, NULL);
--
1.6.2.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment