libosmocore.git branch master updated. 0.9.6-143-g8a5d60b

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Wed Mar 15 13:54:42 UTC 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".

The branch, master has been updated
       via  8a5d60b996f0c653787baa9954a8b3d57f542324 (commit)
      from  7c1ec8c8e763f9ab59f0de3ee25d2cd325d7480e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/libosmocore/commit/?id=8a5d60b996f0c653787baa9954a8b3d57f542324

commit 8a5d60b996f0c653787baa9954a8b3d57f542324
Author: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Date:   Thu Mar 9 23:01:37 2017 +0100

    fix OSMO_VALUE_STRING macro: don't use OSMO_STRINGIFY()
    
    To be able to use OSMO_VALUE_STRING() on a #defined constant, don't use
    OSMO_STRINGIFY(): the second indirection resolves the #define to its value, so
    for example
    
       OSMO_VALUE_STRING(GSM48_PDISC_MM)
    
    would resolve to
    
       { 0x05, "0x05" }
    
    When using '#x' directly, this becomes the desired
    
       { 0x05, "GSM48_PDISC_MM" }
    
    With enum values as we've used until now, this problem does not appear, because
    enum values are not resolved by the preprocessor.
    
    Keep OSMO_STRINGIFY() because it is used directly in openbsc (composing FSM
    state names).
    
    Change-Id: I91ecfcef61be8cf73d59ea821cc4fd9d2ad5c9c7

-----------------------------------------------------------------------

Summary of changes:
 include/osmocom/core/utils.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
An utility library for Open Source Mobile Communications



More information about the osmocom-commitlog mailing list