[MERGED] osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Harald Welte
Harald Welte has submitted this change and it was merged. Change subject: fix a format string error in bts_update_t3122_chan_load() .. fix a format string error in bts_update_t3122_chan_load() In a debug log message, an unsigne

osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Harald Welte
Patch Set 2: Code-Review+2 -- To view, visit https://gerrit.osmocom.org/7687 To unsubscribe, visit https://gerrit.osmocom.org/settings Gerrit-MessageType: comment Gerrit-Change-Id: I09bb519e68886e650647b1369fd49d1964e76c7e Gerrit-PatchSet: 2 Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit

osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Pau Espin Pedrol
Patch Set 2: Please send backport for openbsc :) -- To view, visit https://gerrit.osmocom.org/7687 To unsubscribe, visit https://gerrit.osmocom.org/settings Gerrit-MessageType: comment Gerrit-Change-Id: I09bb519e68886e650647b1369fd49d1964e76c7e Gerrit-PatchSet: 2 Gerrit-Project: osmo-bsc Gerri

osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Pau Espin Pedrol
Patch Set 2: Code-Review+1 -- To view, visit https://gerrit.osmocom.org/7687 To unsubscribe, visit https://gerrit.osmocom.org/settings Gerrit-MessageType: comment Gerrit-Change-Id: I09bb519e68886e650647b1369fd49d1964e76c7e Gerrit-PatchSet: 2 Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit

[PATCH] osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Stefan Sperling
Hello Pau Espin Pedrol, Jenkins Builder, I'd like you to reexamine a change. Please visit https://gerrit.osmocom.org/7687 to look at the new patch set (#2). fix a format string error in bts_update_t3122_chan_load() In a debug log message, an unsigned 64-bit value was printed with %lu but

osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Pau Espin Pedrol
Patch Set 1: (1 comment) https://gerrit.osmocom.org/#/c/7687/1/src/libbsc/chan_alloc.c File src/libbsc/chan_alloc.c: Line 663: LOGP(DRLL, LOGL_DEBUG, "(bts=%d) channel load average is %llu.%.2lu%%\n", Use PRIu64. Also probably needed for the 2nd load parameter, since it's also a 64bit v

osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Pau Espin Pedrol
Patch Set 1: Code-Review-1 -- To view, visit https://gerrit.osmocom.org/7687 To unsubscribe, visit https://gerrit.osmocom.org/settings Gerrit-MessageType: comment Gerrit-Change-Id: I09bb519e68886e650647b1369fd49d1964e76c7e Gerrit-PatchSet: 1 Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit

[PATCH] osmo-bsc[master]: fix a format string error in bts_update_t3122_chan_load()

2018-04-09 Thread Stefan Sperling
Review at https://gerrit.osmocom.org/7687 fix a format string error in bts_update_t3122_chan_load() In a debug log message, a 64-bit value was printed with %lu (32 bit or 64 bit, depending on the platform), but it should be printed with an %llu format directive instead (64 bit everywhere). Cha