Ticket #3120: settings_output.patch

File settings_output.patch, 672 bytes (added by anonymous, 17 years ago)

Small patch changing cerr to cout

  • mythtv-0.20/programs/mythfrontend/main.cpp

    old new  
    913913                for (unsigned int index = 0; index < pairs.size(); ++index)
    914914                {
    915915                    value = gContext->GetSetting(pairs[index]);
    916                     cerr << "\tSettings Value : " << pairs[index];
    917                     cerr <<  " = " << value << endl;
     916                    cout << "\tSettings Value : " << pairs[index];
     917                    cout <<  " = " << value << endl;
    918918                }
    919919                return FRONTEND_EXIT_OK;
    920920            }