Fix type mismatch

This commit is contained in:
TingPing 2015-02-21 20:52:43 -05:00
parent c1d06c7d63
commit c36d4859d7
3 changed files with 4 additions and 4 deletions

View File

@ -147,7 +147,7 @@ char *sysinfo_backend_get_sound(void)
char *sysinfo_backend_get_uptime(void) char *sysinfo_backend_get_uptime(void)
{ {
guint64 uptime; gint64 uptime;
if ((uptime = xs_parse_uptime ()) == 0) if ((uptime = xs_parse_uptime ()) == 0)
{ {

View File

@ -107,10 +107,10 @@ int xs_parse_cpu(char *model, char *vendor, double *freq)
return 0; return 0;
} }
guint64 xs_parse_uptime(void) gint64 xs_parse_uptime(void)
{ {
char buffer[bsize]; char buffer[bsize];
guint64 uptime = 0; gint64 uptime = 0;
FILE *fp = fopen("/proc/uptime", "r"); FILE *fp = fopen("/proc/uptime", "r");
if(fp == NULL) if(fp == NULL)
return 0; return 0;

View File

@ -24,7 +24,7 @@
#define _PARSE_H_ #define _PARSE_H_
int xs_parse_cpu(char *model, char *vendor, double *freq); int xs_parse_cpu(char *model, char *vendor, double *freq);
guint64 xs_parse_uptime(void); gint64 xs_parse_uptime(void);
int xs_parse_sound(char *snd_card); int xs_parse_sound(char *snd_card);
int xs_parse_meminfo(unsigned long long *mem_tot, unsigned long long *mem_free, int swap); int xs_parse_meminfo(unsigned long long *mem_tot, unsigned long long *mem_free, int swap);
int xs_parse_video(char *vid_card); int xs_parse_video(char *vid_card);