mirror of
https://github.com/neondatabase/neon.git
synced 2026-08-18 12:08:19 +00:00
82cbab7512
## Problem Currently the following line below uses array subscript notation which is confusing since `reqlsns` is not an array but just a pointer to a struct. ``` XLogWaitForReplayOf(reqlsns[0].request_lsn); ``` ## Summary of changes Switch from array subscript notation to arrow operator to improve readability of code. Close #10620.