Skip to content

Fix Field `closure_desc` in stub.cpp

Hannes Siebenhandl requested to merge fix/ghc-911-240514 into master

The closure_desc of InfoProv_ was changed from an char * to an uint32_t. This change was mostly done to fix issue: ghc#24504 (closed)

We adapt the stub to these changes by essentially converting the number stored in closure_desc to its string representation, as most tools expect this format. For example, the number 10 is turned into the string "10".

Merge request reports