From f6ca836e251593d6d3be9ed0cb48acf00c9e35d9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 26 Jan 2016 05:07:37 +0100 Subject: [PATCH] Cleanups - respect 80-char width --- dynamic.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dynamic.c b/dynamic.c index 7bf3bdb634..14d0b81eb3 100644 --- a/dynamic.c +++ b/dynamic.c @@ -266,15 +266,18 @@ static void load_dynamic_core(void) { /* Try to verify that -lretro was not linked in from other modules * since loading it dynamically and with -l will fail hard. */ - RARCH_ERR("Serious problem. RetroArch wants to load libretro cores dyamically, but it is already linked.\n"); - RARCH_ERR("This could happen if other modules RetroArch depends on link against libretro directly.\n"); + RARCH_ERR("Serious problem. RetroArch wants to load libretro cores" + "dyamically, but it is already linked.\n"); + RARCH_ERR("This could happen if other modules RetroArch depends on " + "link against libretro directly.\n"); RARCH_ERR("Proceeding could cause a crash. Aborting ...\n"); retro_fail(1, "init_libretro_sym()"); } if (!*settings->libretro) { - RARCH_ERR("RetroArch is built for dynamic libretro cores, but libretro_path is not set. Cannot continue.\n"); + RARCH_ERR("RetroArch is built for dynamic libretro cores, but " + "libretro_path is not set. Cannot continue.\n"); retro_fail(1, "init_libretro_sym()"); }