assembler: Add support for raw output format
[b43-tools.git] / ssb_sprom / utils.c
index 5d3189e99c6c251c05b920c87ffe13bc524ad0da..0661b642897c9009525248d9e5e24c54e2c0bb00 100644 (file)
@@ -16,7 +16,7 @@
 
   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING.  If not, write to
-  the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
+  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
 
 */
@@ -39,7 +39,7 @@ int prinfo(const char *fmt, ...)
                return 0;
 
        va_start(va, fmt);
-       ret = vfprintf(stderr, fmt, va);
+       ret = vfprintf(stdout, fmt, va);
        va_end(va);
 
        return ret;
@@ -63,7 +63,7 @@ int prdata(const char *fmt, ...)
        va_list va;
 
        va_start(va, fmt);
-       ret = vfprintf(stderr, fmt, va);
+       ret = vfprintf(stdout, fmt, va);
        va_end(va);
 
        return ret;