~ubuntu-branches/ubuntu/wily/mercurial/wily

« back to all changes in this revision

Viewing changes to mercurial/pathencode.c

  • Committer: Package Import Robot
  • Author(s): Javi Merino
  • Date: 2014-03-03 22:52:12 UTC
  • mfrom: (1.2.42)
  • Revision ID: package-import@ubuntu.com-20140303225212-1g4mr7wpm39kubm5
Tags: 2.9.1-1
* New upstream release
* mercurial 2.9 breaks current hgsubversion (1.5-1)
* Blacklist test-patchbomb.t as it failed sporadically in mips buildd
  for 2.9-1 and is now failing for me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
530
530
        static const uint32_t twobytes[8];
531
531
 
532
532
        static const uint32_t onebyte[8] = {
533
 
                ~0, 0xffff3ffe, ~0, ~0, ~0, ~0, ~0, ~0,
 
533
                ~0U, 0xffff3ffe, ~0U, ~0U, ~0U, ~0U, ~0U, ~0U,
534
534
        };
535
535
 
536
536
        return _encode(twobytes, onebyte, dest, 0, destsize, src, len, 0);