From: Eric Biggers Date: Mon, 13 Aug 2012 02:41:12 +0000 (-0500) Subject: Use WIM_LINK_TYPE_NONE as default, as documented X-Git-Tag: v1.0.0~158 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=6b48d458662451251f506fcf7e275b4250a31cd0;ds=sidebyside Use WIM_LINK_TYPE_NONE as default, as documented --- diff --git a/src/wim.c b/src/wim.c index b166ba8c..99a8c700 100644 --- 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; }