RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  ____________________________________________________________________________

  Server: rpm5.org                         Name:   Jeff Johnson
  Root:   /v/rpm/cvs                       Email:  j...@rpm5.org
  Module: beecrypt                         Date:   30-Jun-2013 00:06:52
  Branch: rpm-5_4                          Handle: 2013062922065200

  Modified files:           (Branch: rpm-5_4)
    beecrypt                mp.c

  Log:
    - remove gcc warnings.

  Summary:
    Revision    Changes     Path
    1.25.4.1    +4  -4      beecrypt/mp.c
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: beecrypt/mp.c
  ============================================================================
  $ cvs diff -u -r1.25 -r1.25.4.1 mp.c
  --- beecrypt/mp.c     29 Apr 2010 18:40:42 -0000      1.25
  +++ beecrypt/mp.c     29 Jun 2013 22:06:52 -0000      1.25.4.1
  @@ -1419,9 +1419,9 @@
                # if WIN32
                fprintf(f, "%016I64x", *(data++));
                # elif SIZEOF_UNSIGNED_LONG == 8
  -             fprintf(f, "%016lx", *(data++));
  +             fprintf(f, "%016lx", (long unsigned int)*(data++));
                # else
  -             fprintf(f, "%016llx", *(data++));
  +             fprintf(f, "%016llx", (long unsigned int)*(data++));
                # endif
                #else
                # error
  @@ -1446,9 +1446,9 @@
                # if WIN32
                fprintf(f, "%016I64x", *(data++));
                # elif SIZEOF_UNSIGNED_LONG == 8
  -             fprintf(f, "%016lx", *(data++));
  +             fprintf(f, "%016lx", (long unsigned int)*(data++));
                # else
  -             fprintf(f, "%016llx", *(data++));
  +             fprintf(f, "%016llx", (long unsigned int)*(data++));
                # endif
                #else
                # error
  @@ .
______________________________________________________________________
RPM Package Manager                                    http://rpm5.org
CVS Sources Repository                                rpm-cvs@rpm5.org

Reply via email to