X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=blob.c;h=74b1c4f5a3bbe8cec2d6df5ebcac477025bb9c18;hp=617e94f1edd03113d8d194b32c07af2bc25b9b3b;hb=02baea14;hpb=a08d65fa0cbc5f79632be742b818f621f3dc48d0 diff --git a/blob.c b/blob.c index 617e94f1..74b1c4f5 100644 --- a/blob.c +++ b/blob.c @@ -440,8 +440,8 @@ static int blob_get_name_by_id(struct osl_table *table, uint32_t id, return blob_get_name_by_id(table_name ## _table, id, name); \ } -static int blob_get_name_and_def_by_row(struct osl_table *table, struct osl_row *row, - char **name, struct osl_object *def) +static int blob_get_name_and_def_by_row(struct osl_table *table, + const struct osl_row *row, char **name, struct osl_object *def) { struct osl_object obj; int ret = osl_get_object(table, row, BLOBCOL_NAME, &obj); @@ -452,7 +452,7 @@ static int blob_get_name_and_def_by_row(struct osl_table *table, struct osl_row } /** Define the \p get_name_and_def_by_row function for this blob type. */ #define DEFINE_GET_NAME_AND_DEF_BY_ROW(table_name, cmd_prefix) \ - int cmd_prefix ## _get_name_and_def_by_row(struct osl_row *row, \ + int cmd_prefix ## _get_name_and_def_by_row(const struct osl_row *row, \ char **name, struct osl_object *def) \ { \ return blob_get_name_and_def_by_row(table_name ## _table, \