Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2021-04-25 03:18:43 +0300
committerRay Molenkamp <github@lazydodo.com>2021-04-25 03:18:43 +0300
commit87a70801c6a9fe5077ca882dec820a8f24deb07e (patch)
tree2486407bbfa2e54b9136b9828a70135c2ada6d92
parent05dddb71b098027cb36657120b946ff178ae0549 (diff)
Fix build issue due to previous commit
Revert in rB05dddb71b098 did a poor job and left some rubbish.
-rw-r--r--source/blender/editors/space_info/space_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c
index 204ad25b984..7800a90b115 100644
--- a/source/blender/editors/space_info/space_info.c
+++ b/source/blender/editors/space_info/space_info.c
@@ -255,7 +255,7 @@ static void info_header_region_message_subscribe(const wmRegionMessageSubscribeP
struct wmMsgBus *mbus = params->message_bus;
ARegion *region = params->region;
- wmMsgSubscribeValue msg_sub_value_region_tag_redraw{};
+ wmMsgSubscribeValue msg_sub_value_region_tag_redraw;
msg_sub_value_region_tag_redraw.owner = region;
msg_sub_value_region_tag_redraw.user_data = region;
msg_sub_value_region_tag_redraw.notify = ED_region_do_msg_notify_tag_redraw;