diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-14 03:43:40 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-14 03:43:40 +0300 |
commit | 517063eb749383871fa2635cec29ce84770ae83c (patch) | |
tree | 9eb511b4e9aa5665df78c19c9cf3241a9aa572bd /utils | |
parent | a494a8c959d80016073d1c7f499408dbbc4c9815 (diff) | |
download | libADLMIDI-517063eb749383871fa2635cec29ce84770ae83c.tar.gz libADLMIDI-517063eb749383871fa2635cec29ce84770ae83c.tar.bz2 libADLMIDI-517063eb749383871fa2635cec29ce84770ae83c.zip |
GenAdlData: Small change of format output
to don't cause Qt Creator think it's an error message of compiler
Diffstat (limited to 'utils')
-rw-r--r-- | utils/gen_adldata/gen_adldata.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_adldata/gen_adldata.cc b/utils/gen_adldata/gen_adldata.cc index 7c8af8b..d1a64ee 100644 --- a/utils/gen_adldata/gen_adldata.cc +++ b/utils/gen_adldata/gen_adldata.cc @@ -348,7 +348,7 @@ int main(int argc, char**argv) MeasureThreaded measureCounter; { - std::printf("Beginning to generate measures data... (Hardware concurrency: %d)\n", std::thread::hardware_concurrency()); + std::printf("Beginning to generate measures data... (hardware concurrency of %d)\n", std::thread::hardware_concurrency()); std::fflush(stdout); measureCounter.LoadCache("fm_banks/adldata-cache.dat"); measureCounter.m_total = instab.size(); |