comparison src/emodules.c @ 576:6db80f4ab17c

[xemacs-hg @ 2001-05-25 05:42:25 by martinb] Cleaning up after error-frobbing patch: More compiler warnings/errors
author martinb
date Fri, 25 May 2001 05:42:26 +0000
parents 001628b7a5b3
children 190b164ddcac
comparison
equal deleted inserted replaced
575:d5e8f5ad5043 576:6db80f4ab17c
349 strcpy (soname, (char *)XSTRING_DATA (foundname)); 349 strcpy (soname, (char *)XSTRING_DATA (foundname));
350 350
351 dlhandle = dll_open (soname); 351 dlhandle = dll_open (soname);
352 if (dlhandle == (dll_handle)0) 352 if (dlhandle == (dll_handle)0)
353 { 353 {
354 Bufbyte *dllerrint; 354 char *dllerrint;
355 355
356 EXTERNAL_TO_C_STRING (dll_error (dlhandle), dllerrint, Qnative); 356 EXTERNAL_TO_C_STRING (dll_error (dlhandle), dllerrint, Qnative);
357 signal_error (Qdll_error, "Opening dynamic module", 357 signal_error (Qdll_error, "Opening dynamic module",
358 build_string (dllerrint)); 358 build_string (dllerrint));
359 } 359 }