diff --git a/debian/tools/patchlist.sh b/debian/tools/patchlist.sh index f8b96197..9d7f813e 100755 --- a/debian/tools/patchlist.sh +++ b/debian/tools/patchlist.sh @@ -17,7 +17,7 @@ index a273502..5fa0cd5 100644 } +struct wine_patch { -+ const char *hash; ++ const char *name; + const char *author; + const char *title; +} wine_patch_data[] = { diff --git a/patches/loader-Cmdline_Diagnostics/0001-loader-Add-commandline-option-patches-to-show-the-pa.patch b/patches/loader-Cmdline_Diagnostics/0001-loader-Add-commandline-option-patches-to-show-the-pa.patch index e9abea53..5fc3f522 100644 --- a/patches/loader-Cmdline_Diagnostics/0001-loader-Add-commandline-option-patches-to-show-the-pa.patch +++ b/patches/loader-Cmdline_Diagnostics/0001-loader-Add-commandline-option-patches-to-show-the-pa.patch @@ -49,7 +49,7 @@ index ac67290..71e5055 100644 #endif /* __APPLE__ */ +struct wine_patch { -+ const char *hash; ++ const char *name; + const char *author; + const char *title; +}; @@ -74,9 +74,9 @@ index ac67290..71e5055 100644 + if (!strcmp( argv[1], "--patches" )) + { + const struct wine_patch *wine_patch_data = wine_get_patches(); -+ for(; wine_patch_data->hash != NULL; wine_patch_data++) ++ for(; wine_patch_data->name != NULL; wine_patch_data++) + { -+ printf( "%s :: %s :: %s\n", wine_patch_data->hash, wine_patch_data->author, ++ printf( "%s :: %s :: %s\n", wine_patch_data->name, wine_patch_data->author, + wine_patch_data->title ); + } + exit(0);