Change to ISO C90 comment style to fix warning in sayrer's last patch.

This commit is contained in:
reed@reedloden.com 2008-01-11 23:37:32 -08:00
Родитель 83a63cb101
Коммит 84015e0baf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -106,7 +106,7 @@ js_CompareAndSwap(jsword *w, jsword ov, jsword nv)
static JS_INLINE int
js_CompareAndSwap(jsword *w, jsword ov, jsword nv)
{
// Details on these functions available in the manpage for atomic
/* Details on these functions available in the manpage for atomic */
#if JS_BYTES_PER_WORD == 8 && JS_BYTES_PER_LONG != 8
return OSAtomicCompareAndSwap64Barrier(ov, nv, (int64_t*) w);
#else