~ubuntu-branches/ubuntu/precise/corosync/precise-proposed

« back to all changes in this revision

Viewing changes to include/corosync/jhash.h

  • Committer: Bazaar Package Importer
  • Author(s): Ante Karamatic
  • Date: 2009-08-21 09:29:56 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090821092956-w9qxxxx3zeoh8dem
Tags: 1.0.0-4ubuntu2
* debian/control:
  - 'Ubuntu Developers' instead of 'Ubuntu Core Developers'
    as maintainer
  - Bump debhelper dependecy to 7

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
/* A special optimized version that handles 1 or more of u32s.
88
88
 * The length parameter here is the number of u32s in the key.
89
89
 */
90
 
static inline u32 jhash2(u32 *k, u32 length, u32 initval)
 
90
static inline u32 jhash2(const u32 *k, u32 length, u32 initval)
91
91
{
92
92
        u32 a, b, c, len;
93
93