Changeset 895


Ignore:
Timestamp:
09/07/19 13:15:24 (5 years ago)
Author:
oriona
Message:

Unnecessary spaces removed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/simil_test.cpp

    r893 r895  
    8282        szCurrParam = argv[iCurrParam];
    8383        int measure_type = -1;
    84         nResult = sscanf(szCurrParam, " %d ", &measure_type);
     84        nResult = sscanf(szCurrParam, "%d", &measure_type);
    8585        if (nResult != 1)
    8686        {
     
    102102                iCurrParam++;
    103103                szCurrParam = argv[iCurrParam];
    104                 nResult = sscanf(szCurrParam, " %lf ", &M.m_adFactors[i]);
     104                nResult = sscanf(szCurrParam, "%lf", &M.m_adFactors[i]);
    105105                if (nResult != 1)
    106106                {
     
    124124        iCurrParam++;
    125125        szCurrParam = argv[iCurrParam];
    126         nResult = sscanf(szCurrParam, " %d", &M.fixedZaxis);
     126        nResult = sscanf(szCurrParam, "%d", &M.fixedZaxis);
    127127        if (nResult != 1)
    128128        {
Note: See TracChangeset for help on using the changeset viewer.