Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 14 Feb 2000 23:28:28 +0000 (23:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 14 Feb 2000 23:28:28 +0000 (23:28 +0000)
2000-02-14  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/powerpc/atomicity.h: Remove white space to avoid
compiler warning.

ChangeLog
sysdeps/powerpc/atomicity.h

index 3e879f7..93fa9ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-14  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/powerpc/atomicity.h: Remove white space to avoid
+       compiler warning.
+
 2000-02-14  Scott Bambrough <scottb@netwinder.org>
 
        * sysdeps/unix/sysv/linux/arm/ioperm.c (_iopl, _ioperm):  Add
index bb5f491..2924b18 100644 (file)
@@ -1,5 +1,5 @@
 /* Low-level functions for atomic operations.  PowerPC version.
-   Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -67,7 +67,7 @@ compare_and_swap (volatile long int *p, long int oldval, long int newval)
        bne-    1f
        stwcx.  %3,0,%1
        bne-    0b
-1:     
+1:
 " : "=&b"(result) : "r"(p), "Ir"(oldval), "r"(newval) : "cr0", "memory");
   return result >> 5;
 }