Whitespace fix
This commit is contained in:
parent
329a0dfcc5
commit
294bf5a83d
1 changed files with 4 additions and 4 deletions
|
|
@ -214,9 +214,8 @@ namespace {
|
||||||
value_t get_account(call_scope_t& scope)
|
value_t get_account(call_scope_t& scope)
|
||||||
{
|
{
|
||||||
in_context_t<post_t> env(scope, "&v");
|
in_context_t<post_t> env(scope, "&v");
|
||||||
string name;
|
|
||||||
account_t * account = NULL;
|
string name;
|
||||||
bool seeking_account = false;
|
|
||||||
|
|
||||||
if (env.has(0)) {
|
if (env.has(0)) {
|
||||||
if (env.value_at(0).is_long()) {
|
if (env.value_at(0).is_long()) {
|
||||||
|
|
@ -227,7 +226,8 @@ namespace {
|
||||||
else
|
else
|
||||||
name = env->reported_account()->fullname();
|
name = env->reported_account()->fullname();
|
||||||
} else {
|
} else {
|
||||||
account_t * master = env->account;
|
account_t * account = NULL;
|
||||||
|
account_t * master = env->account;
|
||||||
while (master->parent)
|
while (master->parent)
|
||||||
master = master->parent;
|
master = master->parent;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue