diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-19 13:25:39 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-19 13:25:39 +0000 |
commit | 1588eefb6be4303a88804a8079c47c29239bc01e (patch) | |
tree | f18de1e67b0af9fa35522bca7b62b804be7b0ea5 /src/common/graph.c | |
parent | 5208a0be9d90add076d1d7646e074085ccce4b77 (diff) | |
download | hercules-1588eefb6be4303a88804a8079c47c29239bc01e.tar.gz hercules-1588eefb6be4303a88804a8079c47c29239bc01e.tar.bz2 hercules-1588eefb6be4303a88804a8079c47c29239bc01e.tar.xz hercules-1588eefb6be4303a88804a8079c47c29239bc01e.zip |
Fixed some gcc4 warnings
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8807 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/graph.c')
-rw-r--r-- | src/common/graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/graph.c b/src/common/graph.c index 4caa830e6..3602f511f 100644 --- a/src/common/graph.c +++ b/src/common/graph.c @@ -267,7 +267,7 @@ static int graph_draw_timer(int tid,unsigned int tick,int id,int data) return 0;
}
-void graph_add_sensor(const char* string, int interval, unsigned int (*callback_func)(void))
+void graph_add_sensor(const unsigned char* string, int interval, unsigned int (*callback_func)(void))
{
int draw_interval = interval * 2;
struct graph *g = graph_create(GRP_WIDTH,GRP_HEIGHT);
|