X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fmetadata_resource.c;h=54ea91532e6bcc5336f1ccac404d63f5435ca2bc;hb=53b75051f0e9cde007101eeca37cbe3884e03f18;hp=ee3f80ca8bc9dc9338e7e03431b4184cefd724f8;hpb=321750354891a0968ca0c3664417eae73b9414aa;p=wimlib diff --git a/src/metadata_resource.c b/src/metadata_resource.c index ee3f80ca..54ea9153 100644 --- a/src/metadata_resource.c +++ b/src/metadata_resource.c @@ -5,25 +5,25 @@ /* * Copyright (C) 2012, 2013 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. + * This file is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) any + * later version. * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 3 of the License, or (at your option) any later - * version. + * This file is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. * - * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with - * wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif +#include "wimlib/assert.h" #include "wimlib/dentry.h" #include "wimlib/error.h" #include "wimlib/lookup_table.h" @@ -35,9 +35,6 @@ /* * Reads and parses a metadata resource for an image in the WIM file. * - * @wim: - * Pointer to the WIMStruct for the WIM file. - * * @imd: * Pointer to the image metadata structure for the image whose metadata * resource we are reading. Its `metadata_lte' member specifies the lookup @@ -53,7 +50,7 @@ * WIMLIB_ERR_DECOMPRESSION */ int -read_metadata_resource(WIMStruct *wim, struct wim_image_metadata *imd) +read_metadata_resource(struct wim_image_metadata *imd) { const struct wim_lookup_table_entry *metadata_lte; void *buf;