Lines Matching defs:error
61 /* Return the appropriate message for the error. */
64 [ASM_E_NOERROR] = N_("no error"),
72 [ASM_E_IOERROR] = N_("error during output of data"),
77 asm_errmsg (int error)
81 if (error < -1)
82 return _("unknown error");
83 if (error == 0 && last_error == 0)
84 /* No error. */
87 if (error != -1)
88 last_error = error;