Skip to content

Commit

Permalink
Merge pull request hpcc-systems#18999 from richardkchapman/HPCC-32441
Browse files Browse the repository at this point in the history
HPCC-32441 Make all warnings into errors in libremote.so

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Sep 4, 2024
2 parents d4aa2ce + 40dbda6 commit f4a1690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions common/remote/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#####################################################

project( remote )
SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STRICT_CXX_FLAGS}")

HPCC_ADD_SUBDIRECTORY(hooks)

Expand Down
2 changes: 1 addition & 1 deletion common/remote/rmtspawn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ void CRemoteSlave::run(int argc, const char * * argv)
msg.read(numPasswds);
if (numPasswds <= 10)
{
for (int i=0; i<numPasswds; i++)
for (unsigned i=0; i<numPasswds; i++)
{
IpAddress tip;
tip.ipdeserialize(msg);
Expand Down

0 comments on commit f4a1690

Please sign in to comment.