summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDima Kogan <dima@secretsauce.net>2014-06-25 17:27:20 -0700
committerChanho Park <chanho61.park@samsung.com>2014-08-22 20:38:26 +0900
commitd536c7061bfad25a1a860a15e0698f3a02a06797 (patch)
treeed5f3a769c217fb12debb5d20a448e27d9a85892
parent9e766f94c23be55a5a37693e2c3222a84f1f1f17 (diff)
downloadltrace-d536c7061bfad25a1a860a15e0698f3a02a06797.tar.gz
ltrace-d536c7061bfad25a1a860a15e0698f3a02a06797.tar.bz2
ltrace-d536c7061bfad25a1a860a15e0698f3a02a06797.zip
whitespace 'if(' -> 'if ('
-rw-r--r--library.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/library.c b/library.c
index 35a10d3..c2f3fd1 100644
--- a/library.c
+++ b/library.c
@@ -331,7 +331,7 @@ static void dtor_string(const char **tgt, void *data)
static int clone_vect(struct vect **to, const struct vect **from, void *data)
{
*to = malloc(sizeof(struct vect));
- if(*to == NULL)
+ if (*to == NULL)
return -1;
return
@@ -390,14 +390,14 @@ int library_exported_names_push(struct library_exported_names *names,
int own_name )
{
// first, take ownership of the name, if it's not yet ours
- if(!own_name)
+ if (!own_name)
name = strdup(name);
- if(name == NULL)
+ if (name == NULL)
return -1;
// push to the name->addr map
int result = DICT_INSERT(&names->names, &name, &addr);
- if(result == 1) {
+ if (result == 1) {
// This symbol is already present in the table. This library has
// multiple copies of this symbol (probably corresponding to
// different symbol versions). I should handle this gracefully
@@ -407,7 +407,7 @@ int library_exported_names_push(struct library_exported_names *names,
return 0;
}
- if(result != 0)
+ if (result != 0)
return result;
// push to the addr->names map
@@ -418,22 +418,22 @@ int library_exported_names_push(struct library_exported_names *names,
if (paliases == NULL) {
aliases = malloc(sizeof(struct vect));
- if(aliases == NULL)
+ if (aliases == NULL)
return -1;
VECT_INIT(aliases, const char*);
result = DICT_INSERT(&names->addrs, &addr, &aliases);
- if(result != 0)
+ if (result != 0)
return result;
}
else
aliases = *paliases;
const char *namedup = strdup(name);
- if(namedup == NULL)
+ if (namedup == NULL)
return -1;
result = vect_pushback(aliases, &namedup);
- if(result != 0)
+ if (result != 0)
return result;
return 0;
@@ -451,7 +451,7 @@ library_exported_names_each_cb(const char **key, uint64_t *value, void *data)
struct library_exported_names_each_context *context =
(struct library_exported_names_each_context*)data;
enum callback_status status = context->inner_cb(*key, context->data);
- if(status == CBS_FAIL)
+ if (status == CBS_FAIL)
context->failure = true;
return status;
}
@@ -486,11 +486,11 @@ library_exported_names_each_alias_cb(const char **name, void *data)
// I do not report the original name we were asked about. Otherwise, any
// time the caller asks for aliases of symbol "sym", I'll always report
// "sym" along with any actual aliases
- if(strcmp(*name, context->origname) == 0)
+ if (strcmp(*name, context->origname) == 0)
return CBS_CONT;
enum callback_status status = context->inner_cb(*name, context->data);
- if(status == CBS_FAIL)
+ if (status == CBS_FAIL)
context->failure = true;
return status;
}
@@ -506,13 +506,13 @@ bool library_exported_names_each_alias(
// aliased names
uint64_t *addr = DICT_FIND_REF(&names->names,
&aliasname, uint64_t);
- if(addr == NULL)
+ if (addr == NULL)
return false;
// OK. I have an address. Get the list of symbols at this address
struct vect **aliases = DICT_FIND_REF(&names->addrs,
addr, struct vect*);
- if(aliases == NULL)
+ if (aliases == NULL)
return false;
struct library_exported_names_each_alias_context context =