Skip to content

Commit

Permalink
fix some g-ir-scanner warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Matthew committed Feb 5, 2012
1 parent 63f0c2b commit bcb2e2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/rb-async-copy.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ void rb_async_copy_set_progress (RBAsyncCopy *copy,
GError * rb_async_copy_get_error (RBAsyncCopy *copy);

void rb_async_copy_start (RBAsyncCopy *copy,
const char *src_uri,
const char *dest_uri,
const char *src,
const char *dest,
RBAsyncCopyCallback callback,
gpointer user_data,
GDestroyNotify destroy_data);
Expand Down
6 changes: 3 additions & 3 deletions metadata/rb-ext-db-key.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,17 +346,17 @@ rb_ext_db_key_get_field_values (RBExtDBKey *key, const char *field)
/**
* rb_ext_db_key_add_info:
* @key: a #RBExtDBKey
* @field: name of the field to add
* @name: name of the field to add
* @value: field value
*
* Adds an information field to the key.
*/
void
rb_ext_db_key_add_info (RBExtDBKey *key,
const char *field,
const char *name,
const char *value)
{
add_to_list (&key->info, NULL, field, value);
add_to_list (&key->info, NULL, name, value);
}

/**
Expand Down

0 comments on commit bcb2e2e

Please sign in to comment.