X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Flookup_table.c;h=f22bfaf7cf7df4c995065b81eb0ba10a9af77b65;hp=432fca4796445852b439285eec61371d5a3a8612;hb=670a0ed6a1f36bebf71f0b221f3d78e497d305c2;hpb=e94aa48490fda7524b49478e5aa2dc4b7d03b0a1 diff --git a/src/lookup_table.c b/src/lookup_table.c index 432fca47..f22bfaf7 100644 --- a/src/lookup_table.c +++ b/src/lookup_table.c @@ -89,8 +89,9 @@ clone_lookup_table_entry(const struct wim_lookup_table_entry *old) #ifdef __WIN32__ case RESOURCE_WIN32: case RESOURCE_WIN32_ENCRYPTED: -#endif +#else case RESOURCE_IN_FILE_ON_DISK: +#endif #ifdef WITH_FUSE case RESOURCE_IN_STAGING_FILE: BUILD_BUG_ON((void*)&old->file_on_disk != @@ -147,13 +148,14 @@ free_lookup_table_entry(struct wim_lookup_table_entry *lte) #ifdef __WIN32__ case RESOURCE_WIN32: case RESOURCE_WIN32_ENCRYPTED: + #else + case RESOURCE_IN_FILE_ON_DISK: #endif #ifdef WITH_FUSE case RESOURCE_IN_STAGING_FILE: BUILD_BUG_ON((void*)<e->file_on_disk != (void*)<e->staging_file_name); #endif - case RESOURCE_IN_FILE_ON_DISK: case RESOURCE_IN_ATTACHED_BUFFER: BUILD_BUG_ON((void*)<e->file_on_disk != (void*)<e->attached_buffer); @@ -671,8 +673,9 @@ print_lookup_table_entry(const struct wim_lookup_table_entry *lte, FILE *out) #ifdef __WIN32__ case RESOURCE_WIN32: case RESOURCE_WIN32_ENCRYPTED: -#endif +#else case RESOURCE_IN_FILE_ON_DISK: +#endif tfprintf(out, T("File on Disk = `%"TS"'\n"), lte->file_on_disk); break;