]> wimlib.net Git - wimlib/commitdiff
Use WIM_LINK_TYPE_NONE as default, as documented
authorEric Biggers <ebiggers3@gmail.com>
Mon, 13 Aug 2012 02:41:12 +0000 (21:41 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Mon, 13 Aug 2012 02:41:43 +0000 (21:41 -0500)
src/wim.c

index b166ba8ceea4dc01492b420c721469b538b0c2fa..99a8c70072e89c1f1a6b563bc88ba229f09ed7cf 100644 (file)
--- a/src/wim.c
+++ b/src/wim.c
@@ -53,8 +53,8 @@ WIMStruct *new_wim_struct()
        w = CALLOC(1, sizeof(WIMStruct));
        if (!w)
                return NULL;
-       w->link_type      = WIM_LINK_TYPE_HARD;
-       w->current_image  = WIM_NO_IMAGE;
+       w->link_type     = WIM_LINK_TYPE_NONE;
+       w->current_image = WIM_NO_IMAGE;
        return w;
 }