Bruce Momjian <[email protected]> writes: > I see a compiler warning on git master: > sharedfileset.c:288:8: warning: variable ‘found’ set but not used > [-Wunused-but-set-variable]
Could get rid of the variable entirely: change the "break" to "return"
and then the final Assert can be "Assert(false)".
regards, tom lane
