Fix race condition typos in keyboard "shuold" -> "should"

This commit is contained in:
pancake 2023-07-31 11:53:53 +02:00 committed by pancake
parent bcfe04e82c
commit ab8f425c04
4 changed files with 4 additions and 4 deletions

View File

@ -504,7 +504,7 @@ static int r_asm_assemble(RAsm *a, RAnalOp *op, const char *buf) {
if (a->analb.anal) {
ut8 buf[256] = {0};
a->analb.anal->arch->cfg->endian = a->config->endian;
// XXX we shuold use just RArch and ecur/dcur
// XXX we should use just RArch and ecur/dcur
ret = a->analb.encode (a->analb.anal, a->pc, b, buf, sizeof (buf));
if (ret > 0) {
r_anal_op_set_bytes (op, a->pc, buf, R_MIN (ret, sizeof (buf)));

View File

@ -553,7 +553,7 @@ struct trace_node {
int refs;
};
// XXX those tmp files are never removed and we shuoldnt use files for this
// XXX those tmp files are never removed and we shouldnt use files for this
static void setRarunProfileString(RCore *core, const char *str) {
char *file = r_file_temp ("rarun2");
char *s = strdup (str);

View File

@ -3200,7 +3200,7 @@ R_API bool r_core_init(RCore *core) {
r_parse_set_user_ptr (core->parser, core);
core->bin = r_bin_new ();
r_cons_bind (&core->bin->consb);
// XXX we shuold use RConsBind instead of this hardcoded pointer
// XXX we should use RConsBind instead of this hardcoded pointer
core->bin->cb_printf = (PrintfCallback) r_cons_printf;
r_bin_set_user_ptr (core->bin, core);
core->io = r_io_new ();

View File

@ -921,7 +921,7 @@ R_API int r_debug_step_soft(RDebug *dbg) {
bpi->swstep = true;
}
}
// XXX this causes an stack exhaustion problem so it shuold be done by the caller
// XXX this causes an stack exhaustion problem so it should be done by the caller
bool ret = r_debug_continue (dbg);
for (i = 0; i < br; i++) {