diff options
author | Rodrigo Balerdi <lanchon@gmail.com> | 2024-04-06 03:18:00 -0300 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2024-04-07 20:06:11 +0100 |
commit | 8cf4ac5195476356a14678ae72897e563881b15e (patch) | |
tree | be3dd7b253ba82a422c49d3a0cb39afee8c1291a | |
parent | 507b0286d9e5a06fc50fcad6e1b38f373f4beb13 (diff) |
base-files: minor fix to mmc_get_mac_ascii function
This is mostly a cosmetic cleanup. The absence of
the return statement was not causing any problems.
Signed-off-by: Rodrigo Balerdi <lanchon@gmail.com>
-rw-r--r-- | package/base-files/files/lib/functions/system.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/lib/functions/system.sh b/package/base-files/files/lib/functions/system.sh index 107e67835a..23484c8ad9 100644 --- a/package/base-files/files/lib/functions/system.sh +++ b/package/base-files/files/lib/functions/system.sh @@ -205,6 +205,7 @@ mmc_get_mac_ascii() { part=$(find_mmc_part "$part_name") if [ -z "$part" ]; then echo "mmc_get_mac_ascii: partition $part_name not found!" >&2 + return fi get_mac_ascii "$part" "$key" |