~ubuntu-branches/ubuntu/gutsy/ggz-client-libs/gutsy

« back to all changes in this revision

Viewing changes to ggzcore/state.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut, Josef Spillner, Peter Eisentraut
  • Date: 2007-05-02 20:45:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502204502-l6q0yzghpms69nnu
Tags: 0.0.14-1
[ Josef Spillner ]
* New upstream version.

[ Peter Eisentraut ]
* Soname change libggzcore7 -> libggzcore9

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * Author: Brent Hendricks
4
4
 * Project: GGZ Core Client Lib
5
5
 * Date: 9/22/00
6
 
 * $Id: state.c 7889 2006-03-07 09:57:32Z josef $
 
6
 * $Id: state.c 8265 2006-06-24 08:22:26Z jdorje $
7
7
 *
8
8
 * Code for handling state manipulations
9
9
 *
217
217
                          _ggz_states[*cur].name, 
218
218
                          _ggz_states[next].name);
219
219
                *cur = next;
 
220
        } else if (next == -1) {
 
221
                ggz_error_msg("No state transition for %d from %s!", 
 
222
                              trans, _ggz_states[*cur].name);
220
223
        }
221
224
}
222
225