~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to camel/camel-trie.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
        memset (p, ' ', depth * 2);
208
208
        p[depth * 2] = '\0';
209
209
 
210
 
        fprintf (stderr, "%s[state] %p: final=%d; pattern-id=%d; fail=%p\n",
211
 
                 p, s, s->final, s->id, s->fail);
 
210
        fprintf (
 
211
                stderr, "%s[state] %p: final=%d; pattern-id=%d; fail=%p\n",
 
212
                p, s, s->final, s->id, s->fail);
212
213
        m = s->match;
213
214
        while (m) {
214
215
                fprintf (stderr, " %s'%c' -> %p\n", p, m->c, m->state);
307
308
                }
308
309
        }
309
310
 
310
 
        d(fprintf (stderr, "\nafter adding pattern '%s' to trie %p:\n", pattern, trie));
 
311
        d (fprintf (stderr, "\nafter adding pattern '%s' to trie %p:\n", pattern, trie));
311
312
        d (dump_trie (&trie->root, 0));
312
313
}
313
314