Changeset 1571 for trunk/src/core


Ignore:
Timestamp:
Sep 29, 2009, 10:19:44 AM (15 years ago)
Author:
gah
Message:

Fixups for bit rot: gcc-4.4.1

Location:
trunk/src/core
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core/RpEncode.cc

    r1526 r1571  
    212212    const char *cp, *endPtr;
    213213    for (cp = buf, endPtr = buf + size; cp < endPtr; cp++) {
    214         if (!_base64chars[*cp]) {
     214        if (!_base64chars[(unsigned int)*cp]) {
    215215            fprintf(stderr, "%c %d is not base64\n", *cp, *cp);
    216216            return false;
  • trunk/src/core/RpOutcome.cc

    r1566 r1571  
    1010 * ======================================================================
    1111 */
     12#include <cstdarg>
     13#include <cstdio>
     14#include <cstdlib>
    1215#include "RpOutcome.h"
    13 #include <stdarg.h>
    14 #include <stdlib.h>
    1516using namespace Rappture;
    1617
  • trunk/src/core/RpUnits.cc

    r1527 r1571  
    1515
    1616#include "RpUnits.h"
     17#include <cstdio>
    1718#include <algorithm>
    1819
Note: See TracChangeset for help on using the changeset viewer.