~ubuntu-branches/ubuntu/wily/ruby-ferret/wily-proposed

« back to all changes in this revision

Viewing changes to ext/except.h

  • Committer: Package Import Robot
  • Author(s): Antonio Terceiro
  • Date: 2015-07-14 18:35:31 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150714183531-364jc4pemywyi4cz
Tags: 0.11.8.6-1
* New upstream release
  - ported to ruby2.2
* debian/copyright: add Files-Excluded to remove embedded copy of bzlib
* debian/rules: stop removing embedded copy fo bzlib which won't exist
  anymore (Closes: #743909)

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
# define FRT_RAISE(excode, ...) do {\
149
149
  snprintf(frt_xmsg_buffer, FRT_XMSG_BUFFER_SIZE, __VA_ARGS__);\
150
150
  snprintf(frt_xmsg_buffer_final, FRT_XMSG_BUFFER_SIZE,\
151
 
          "Error occured in %s:%d - %s\n\t%s",\
 
151
          "Error occurred in %s:%d - %s\n\t%s",\
152
152
          __FILE__, __LINE__, __func__, frt_xmsg_buffer);\
153
153
  frt_xraise(excode, frt_xmsg_buffer_final);\
154
154
} while (0)
156
156
# define FRT_RAISE(excode, args...) do {\
157
157
  snprintf(frt_xmsg_buffer, FRT_XMSG_BUFFER_SIZE, ##args);\
158
158
  snprintf(frt_xmsg_buffer_final, FRT_XMSG_BUFFER_SIZE,\
159
 
          "Error occured in %s:%d - %s\n\t%s\n",\
 
159
          "Error occurred in %s:%d - %s\n\t%s\n",\
160
160
          __FILE__, __LINE__, __func__, frt_xmsg_buffer);\
161
161
  frt_xraise(excode, frt_xmsg_buffer_final);\
162
162
} while (0)