Skip to content

Commit

Permalink
Merge branch 'louissobel-fix-getMaxSCOLength-MQSCO_LENGTH_7'
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmmqmet committed Jan 6, 2025
2 parents 820a4af + d6ac50b commit 0a8f82c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ibmmq/mqiMQCNO.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ size_t getMaxCDLength() {
size_t getMaxSCOLength() {
size_t l;
#if defined(MQSCO_VERSION_6)
#if defined(MQSCO_VERSION_7)
l = MQSCO_LENGTH_7;
#elif defined(MQSCO_VERSION_6)
l = MQSCO_LENGTH_6;
#else
l = MQSCO_LENGTH_5; // The minimum supported here
Expand Down

0 comments on commit 0a8f82c

Please sign in to comment.