From 6b48d458662451251f506fcf7e275b4250a31cd0 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 12 Aug 2012 21:41:12 -0500 Subject: [PATCH] Use WIM_LINK_TYPE_NONE as default, as documented --- src/wim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.43.0