Esempio n. 1
0
 /** Returns an English error description. */
 const char *get_string() const {
     return (ups_strerror(m_errno));
 }
Esempio n. 2
0
void
error(const char *foo, ups_status_t st) {
  printf("%s() returned error %d: %s\n", foo, st, ups_strerror(st));
  exit(-1);
}