~indicator-applet-developers/libappindicator/trunk.devel

« back to all changes in this revision

Viewing changes to src/generate-id.c

  • Committer: Tarmac
  • Author(s): Charles Kerr, Mathieu Trudel-Lapierre, Michael Terry
  • Date: 2013-01-30 11:06:26 UTC
  • mfrom: (247.1.6 fix-test-merge)
  • Revision ID: tarmac-20130130110626-l39zryx7jn4mcskg
This is a continuation of ~mathieu-tl/libappindicator/fix-test-merge/ which adds fixes for bug #1102589, bug #1102595, bug #1109128, and bug #1103087, which should get it finally passing CI. Fixes: https://bugs.launchpad.net/bugs/1102589, https://bugs.launchpad.net/bugs/1102595, https://bugs.launchpad.net/bugs/1103087, https://bugs.launchpad.net/bugs/1109128.

Approved by Ted Gould, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
                }
66
66
        }
67
67
 
68
 
        return (((((category * 256) + first) * 256) + second) * 256) + third;
 
68
        return (((((category << 8) + first) << 8) + second) << 8) + third;
69
69
}