From: Keith Seitz Date: Fri, 14 Apr 2017 01:49:34 +0000 (-0700) Subject: Fix typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f04b01bf9ed3209fdc0b01f5d85ffd322fb4440;p=thirdparty%2Fbinutils-gdb.git Fix typo. --- diff --git a/gdb/compile/compile-c-support.c b/gdb/compile/compile-c-support.c index 41f7aecc64f..a29410506ca 100644 --- a/gdb/compile/compile-c-support.c +++ b/gdb/compile/compile-c-support.c @@ -80,7 +80,7 @@ load_libcompile (const char *fe_libcc, const char *fe_context) /* gdb_dlopen will call error () on an error, so no need to check value. */ gdb_dlhandle_up handle = gdb_dlopen (fe_libcc); - func = (FUNCTYPE *) (gdb_dlsym (handle, fe_context)); + func = (FUNCTYPE *) gdb_dlsym (handle, fe_context); if (func == NULL) error (_("could not find symbol %s in library %s"), fe_context, fe_libcc);