* fix compiler warning for newest gcc/g++

This commit is contained in:
djcb
2012-03-13 23:06:17 +02:00
parent a051f3a89f
commit daaec407eb
11 changed files with 186 additions and 174 deletions

View File

@ -366,9 +366,9 @@ show_parts (const char* path, MuConfig *opts, GError **err)
static gboolean
check_params (MuConfig *opts)
{
guint param_num;
size_t param_num;
param_num = mu_config_param_num(opts);
param_num = mu_config_param_num (opts);
if (param_num < 2) {
g_warning ("usage: mu extract [options] <file> [<pattern>]");