]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix comment.
authorUlrich Drepper <drepper@redhat.com>
Fri, 10 Sep 1999 19:20:36 +0000 (19:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 10 Sep 1999 19:20:36 +0000 (19:20 +0000)
elf/link.h

index 5e9d7a88681e6e2e75aba32d567a7f6c5bb7077e..9b34531355594fa3818a834f0a803e7e56af2698 100644 (file)
@@ -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[];