Changeset 84239b1 in mainline for boot/genarch
- Timestamp:
- 2018-03-11T19:39:11Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3d47c97
- Parents:
- 850fd32
- File:
- 
      - 1 edited
 
 - 
          
  boot/genarch/src/ofw_tree.c (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      boot/genarch/src/ofw_tree.cr850fd32 r84239b1 110 110 /* Find last slash */ 111 111 size_t i; 112 for (i = len; (i > 0) && (path[i - 1] != '/'); i--); 112 i = len; 113 while (i > 0 && path[i - 1] != '/') 114 i--; 113 115 114 116 /* Do not include the slash */ 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
