Created
May 3, 2009 20:22
-
-
Save farhaven/106146 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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