From: Ulrich Drepper Date: Fri, 10 Sep 1999 19:20:36 +0000 (+0000) Subject: Fix comment. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=731dd7aacaf6fb3d1a55b1c1015cc6f94cefe3a6;p=thirdparty%2Fglibc.git Fix comment. --- diff --git a/elf/link.h b/elf/link.h index 5e9d7a88681..9b345313555 100644 --- a/elf/link.h +++ b/elf/link.h @@ -70,7 +70,8 @@ extern struct r_debug _r_debug; of whatever module refers to `_DYNAMIC'. So, to find its own `struct r_debug', a program could do: for (dyn = _DYNAMIC; dyn->d_tag != DT_NULL) - if (dyn->d_tag == DT_DEBUG) r_debug = (struct r_debug) dyn->d_un.d_ptr; + if (dyn->d_tag == DT_DEBUG) + r_debug = (struct r_debug *) dyn->d_un.d_ptr; */ extern ElfW(Dyn) _DYNAMIC[];