This fix comes from an upstream pull request, see https://pagure.io/libaio/pull-request/22#commit_list diff --git a/harness/cases/23.t b/harness/cases/23.t index cc5a8a1..9bbb05c 100644 --- a/harness/cases/23.t +++ b/harness/cases/23.t @@ -72,7 +72,7 @@ static void fail_errno(const char *format, ...) static void *thrproc2(void *arg) { for (;;) { - off_t offset = 0; + off64_t offset = 0; pthread_barrier_wait(&barrier); if (exiting) @@ -92,7 +92,7 @@ static void *thrproc3(void *arg) { for (;;) { char c; - off_t offset = 0; + off64_t offset = 0; pthread_barrier_wait(&barrier); if (exiting) nput type='hidden' name='id' value='ca79fc5b14ab3e0c98221fb55bc29cfa54973363'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/newt/welcome.scm
AgeCommit message (Expand)Author
2022-02-02installer: Use named prompt to abort or break installer steps....* gnu/installer/steps.scm (run-installer-steps): Set up 'installer-step prompt. * gnu/installer/newt/ethernet.scm (run-ethernet-page) * gnu/installer/newt/final.scm (run-config-display-page, run-install-failed-page) * gnu/installer/newt/keymap.scm (run-layout-page, run-variant-page) * gnu/installer/newt/locale.scm (run-language-page, run-territory-page, run-codeset-page, run-modifier-page, run-locale-page) * gnu/installer/newt/network.scm (run-technology-page, wait-service-online) * gnu/installer/newt/page.scm (run-listbox-selection-page, run-checkbox-tree-page) * gnu/installer/newt/partition.scm (button-exit-action) * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page, run-networking-cbt-page, run-other-services-cbt-page, run-network-management-page) * gnu/installer/newt/timezone.scm (run-timezone-page) * gnu/installer/newt/user.scm (run-user-page) * gnu/installer/newt/welcome.scm (run-menu-page) * gnu/installer/newt/wifi.scm (run-wifi-page): Use the 'installer-step prompt to abort. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Josselin Poiret