Ignore:
Timestamp:
2018-04-12T12:57:20Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3bacee1
Parents:
9c514be
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 18:18:43)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 12:57:20)
Message:

Use proper boolean constant in while loops.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/sun4u/sparc64.c

    r9c514be r76d0981d  
    5050#include <userspace.h>
    5151#include <ddi/irq.h>
     52#include <stdbool.h>
    5253#include <str.h>
    5354#include <sysinfo/sysinfo.h>
     
    169170
    170171        /* Not reached */
    171         while (1)
     172        while (true)
    172173                ;
    173174}
     
    176177{
    177178        // TODO
    178         while (1)
     179        while (true)
    179180                ;
    180181}
Note: See TracChangeset for help on using the changeset viewer.