/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/Error.c

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-25 21:52:28 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20160125215228-m9k1we2mplfla6y4
* Getting closer to fixing the callbacks...

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
  if (_internal_s_error_domain_list) {
153
153
    s_dynamic_array_free (_internal_s_error_domain_list, TRUE);
154
154
  }
155
 
  s_dbg_print ("Done taring down error system.");
 
155
  s_dbg_print ("Done tearing down error system.");
156
156
}
157
157
 
158
158
 
171
171
  }
172
172
 
173
173
  if (!(_internal_s_error_domain_list)) {
174
 
    s_dbg_print ("Array does not exist, lets crete it!");
 
174
    s_dbg_print ("Array does not exist, lets create it!");
175
175
    _internal_s_error_domain_list =
176
176
          s_dynamic_array_new (S_ERROR_DOMAIN_RANGE_MAX,
177
177
          FREEFUNC (_internal_s_error_domain_item_free));